myWin=null;

function openWindow (menu, loc, x, y) 
{
var preference;
preference = "width=" + x + ",height=" + y + ",status=no,resizable=no,toolbar=no,menubar=no,scrollbars=no";
if (myWin!=null) {
	if (myWin.closed!=true) 
	{
		myWin.close();
	}
}
myWin=open ("", "displayWindow", preference);
myWin.document.open();
myWin.document.writeln("<html><head><title>" + menu + "</title>");
myWin.document.writeln("</head>");
myWin.document.writeln("<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
myWin.document.writeln("<img border=0 src=\"" + loc + "\">");
myWin.document.writeln("</body></html>");
myWin.document.close();
}

