var DispWin=null
function scrolldisplay(image,iwidth,iheight)
{
	if (iwidth>screen.width-30) iwidth=screen.width-30;
	if (iheight>screen.height-30) iheight=screen.height-110;
	iheight=iheight+20;
	iwidth=iwidth+20;
	image="images/"+image;
	{
	if (DispWin!=null&&DispWin.closed==false)
		DispWin.close();
		DispWin=window.open("", "photodisplay", "resizable=no,scrollbars=yes,top=20,left=0,status=no,width="+iwidth+",height="+iheight);
		DispWin.document.open();
		DispWin.document.write("<html>");
		DispWin.document.write("<title>St. Nicholas Mountain</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='#FFFFFF'>");
		DispWin.document.write("<center>");
		DispWin.document.write("<a href='javascript: void(null)' onClick='self.close()'><img src='"+image+"' align='Center' border='0' title='Click to close window'></img></a>");
		DispWin.document.write("</center>");
		DispWin.document.write("</html>");
		DispWin.document.close();
		DispWin.focus();
		}	
}
