
	// ****************** POPUP WINDOW CODE ****************** //
	function displayWindow(ImageName,string) 
	{
		WinTop = 100;  
		WinLeft = 150;
		winFeatures = "toolbar=0,location=0,directories=0,status=0";
		winFeatures += ",menubar=0,scrollbars=0,resizable=yes";
		winFeatures += ",screenX="+WinLeft+",screenY="+WinTop;
		winFeatures += ",left="+WinLeft+",top="+WinTop;
		winFeatures += ",height=320,width=270";
		PopUpWindow=window.open("","PopUpWindow",winFeatures);
		PopUpWindow.document.writeln('<html>');
		PopUpWindow.document.writeln('<head>');
		PopUpWindow.document.writeln('<title> Comstock and Wilderness </title>');
		PopUpWindow.document.writeln('</head>');
		if (navigator.appName == "Microsoft Internet Explorer")
		  PopUpWindow.document.writeln('<body topmargin="4" leftmargin="0" marginwidth="0" bgcolor="#FFFFFF" marginheight="10" onLoad="window.resizeTo(document.images[0].width+20,document.images[0].height+100)">');
		else
				PopUpWindow.document.writeln('<body topmargin="4" leftmargin="0" marginwidth="0" marginheight="10" onLoad="window.resizeTo(document.images[0].width+20,document.images[0].height+80)">');
		PopUpWindow.document.writeln('<center><img  src="'+ImageName+' " border="1" ></center>');
		PopUpWindow.document.writeln("<br><center><a href='javascript:self.close();'><img src='/comstock/images/closeWindow.gif' alt='Close Window' border='0' width='120' height='21'></a> &nbsp; <a href='javascript:window.print();'><img src='/comstock/images/printWindow.gif' alt='Print Window' border='0' width='120' height='21'></a><center>");
		PopUpWindow.document.writeln('</body>');
		PopUpWindow.document.writeln('</html>');
		PopUpWindow.document.close();
		PopUpWindow.focus();
	}

