<!-- Begin code
function new_window(version) 
{
        edify = window.open('','edify','resizable=yes,menubar=no,toolbar=no,scrollbars=yes,status=no,width=800,height=600');
        edify.location.href= version;
}
function PopImageWin(url,alt,x,y)
{
	content = '<html><head><title>Hong Kong Museum of History</title></head><body leftmargin="0" topmargin="5" marginwidth="0" marginheight="0" bgcolor="white"><center><a href="javascript:top.window.close();"><img src="' + url + '" border=0 title="'+ alt +'" alt="'+ alt +'"></a></center></body></html>';
	eval("nw = window.open('', '','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,pageXOffset=0,pageYOffset=0,top=0,left=0,width=" + x + ",height=" + y + "')");
	nw.focus();
	nw.document.write(content);
	nw.document.close();
}
// -- End code -->

