function imageWindow(imageName) { // Function to create a new popup window.
						 
			// Create and open new window
			var newWindow = window.open("", "LargeMap", 'width=700,height=600,left=0,top=0') 
			// Set openWindow variable and write HTML elements.
			var openWindow = newWindow.document;
			openWindow.write('<html><head><title>Large Pan</title>');
			openWindow.write('</head><body><img src="images/' + imageName + '.gif" alt="' + imageName +'" title="' + imageName +'" \/>');
			openWindow.write('<p align="center"><a href="javascript:self.close()"><img src="images/close.gif" alt="Close Window" border="0" /></a></p>');
			openWindow.write('</body></html>');
			openWindow.close();  
			
		} // End of imageWindow function.
		
var TRange=null

function findString (str) {
 if (parseInt(navigator.appVersion)<4) return;
 var strFound;
 if (navigator.appName=="Netscape") {

  // NAVIGATOR-SPECIFIC CODE

  strFound=self.find(str);
  if (!strFound) {
   strFound=self.find(str,0,1)
   while (self.find(str,0,1)) continue
  }
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {

  // EXPLORER-SPECIFIC CODE

  if (TRange!=null) {
   TRange.collapse(false)
   strFound=TRange.findText(str)
   if (strFound) TRange.select()
  }
  if (TRange==null || strFound==0) {
   TRange=self.document.body.createTextRange()
   strFound=TRange.findText(str)
   if (strFound) TRange.select()
  }
 }
 if (!strFound) alert ("String '"+str+"' not found!")
}