<!--

// Copyright (c) 2003-2004 Danil Rogozhkin, rdv@ufanet.ru, http://rdv.ufanet.ru
// If you use some of this-script-based solutions please, do not remove commented lines. Thank you.
// Feel free to contact me if you have any questions.

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=yes,toolbar=no,left=50,top=10");
	w.document.open();
	w.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n<html>\n<head>\n<title>" + page_title + "</title>\n</head>\n<body background=\"" + bg_src + "\" onBlur=\"window.close()\">\n<div style='width=" + window_width + "; height=" + window_height + "'>\n</div>\n</body>\n</html>");
	w.document.close();
	}

//-->
