var DispWin=null
function display(image,iwidth,iheight)
{
	if (iwidth==null) iwidth="640";
	if (iheight==null) iheight="430";
	image="images/"+image;
	{
	if (DispWin!=null&&DispWin.closed==false)
		DispWin.close();
		DispWin=window.open("", "photodisplay", "resizable=no,top=20,left=10,status=no,width="+iwidth+",height="+iheight);
		DispWin.document.open();
		DispWin.document.write("<HTML>");
		DispWin.document.write("<TITLE>Great Northern Empire</TITLE>");
		DispWin.document.write("<STYLE TYPE='text/css'> BODY {margin:0pt} </STYLE>");
		DispWin.document.write("<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR='#FE9C0A'>");
		DispWin.document.write("<CENTER>");
		DispWin.document.write("<A HREF='javascript: void(null)' onClick='self.close()'><IMG SRC='"+image+"' ALIGN='Center' WIDTH='"+iwidth+"' HEIGHT='"+iheight+"' BORDER='0' TITLE='Click to close window'></IMG></A>");
		DispWin.document.write("</CENTER>");
		DispWin.document.write("</HTML>");
		DispWin.document.close();
		DispWin.focus();
		}	
}