<!--

// Thanks to Danil Rogozhkin.
// Panacea, http://panacea.rusrock.ru
// If you use some of this-script-based solutions please, do not remove commented lines. Thank you.

function pop(bg_src,page_title,window_width,window_height)
	{
	w = open("","displayWindow","width=" + window_width + ",height=" + window_height + ",directories=no,location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no,left=0,top=0");
	w.document.open();
	w.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html>\n<head>\n<title>" + page_title + "</title>\n</head>");
	w.document.write("\n<body background=\"" + bg_src + "\" onBlur=\"window.close()\" onclick=\"window.close()\" title=\"close\">");
	w.document.write("\n</body>\n</html>");
	w.document.close();
	}

//-->
