		var figWindowOpen=null;
		function figWindow(thisImage, thisCaption, thisWidth, thisHeight){
			thisPage="minesitetemp.htm";
			configString="location=no,menubar=no,directories=no,scrollbars=no,resizable=yes,status=no,width="+thisWidth+",height="+thisHeight;
			if (figWindowOpen == null) {
				figWindowOpen = window.open(thisPage, "thisWindow",configString);
				figWindowOpen.location = thisPage;
			} else {
				if (figWindowOpen.closed) {
				} else {
					figWindowOpen.close();
				}
				figWindowOpen = window.open(thisPage, "thisWindow",configString);
			}
			figWindowOpen.document.write('<head><title>Mine Site Figure Window</title></head><body><div><img src="'+thisImage+'" border="0" /></div><div style="font-size:8pt; color:#000066; font-weight:normal;">'+thisCaption+'</div><div align="center"><input type="button" value="Close" onclick="javascript: window.close();" /></div></body>');
			figWindowOpen.focus();
			return;
		}

		var summaryWindowOpen=null;
		function summaryWindow(thisSite){
			thisPage="minesitereport.asp?site="+thisSite;
			configString="location=no,menubar=no,directories=no,scrollbars=yes,resizable=yes,status=no,width=600,height=500";
			if (summaryWindowOpen == null) {
				summaryWindowOpen = window.open(thisPage, "thisWindow",configString);
				summaryWindowOpen.location = thisPage;
			} else {
				if (summaryWindowOpen.closed) {
				} else {
					summaryWindowOpen.close();
				}
				summaryWindowOpen= window.open(thisPage, "thisWindow",configString);
			}
			summaryWindowOpen.focus();
			return;
		}
