var mode=0;
var win=0;

function show(theURL) 
{ 
	if (win==0)	
	  	win=window.open("empty.html","wndShow","scrollbars=yes,resizable=yes'");

	mode=1;
	win.document.open();
	win.document.writeln("");

	win.document.writeln("<html><head><script language='JavaScript'>");
	win.document.writeln("var wndParent;");
	win.document.writeln("function inform() {");
	win.document.writeln("wndParent.closedWnd();");
	win.document.writeln("}");
	win.document.writeln("</script>");
	win.document.writeln("</head>");

	win.document.writeln("");
	win.document.writeln("<body bgcolor='white' onUnload='inform()'>");
	win.document.writeln("<img src='"+theURL+"'>");
	win.document.writeln("</body></html>");
	win.document.close();

	win.wndParent=this;
	mode=0;
}


function closedWnd()
{
	if (mode==1) return;
	win=0;
}
