<!--
function popup(htmlFile,htmlWidth,htmlHeight, winname)
	{
		Param = "dependent=yes, directories=no, titlebar=no, SCROLLBARS=no,RESIZABLE=no, TOOLBAR=no,STATUS=no,MENUBAR=no";
		Param += ",WIDTH=" +htmlWidth+",HEIGHT=" +htmlHeight;
		Param += ",TOP=" + String(window.screen.Height/2 - parseInt(htmlHeight)/2);
		Param += ",LEFT=" + String(window.screen.Width/2 - parseInt(htmlWidth)/2);
		window.open(htmlFile, winname, Param);
	}

function double_load(win1,win2) 
	{
		self.location.replace(win1);
		parent.right.location.replace(win2);
		return;
	}
// -->

