	function displayMap(mapPath)
	{ 
		var mapPage = "";

		mapPage = '<html>\n';
		mapPage += '<head>\n';
		mapPage += '<title>TUC - Map</title>\n'
		mapPage += '<script language="JavaScript" src="map.js">\n';
		mapPage += '<!--\n';
		mapPage += '//-->\n';
		mapPage += '</script>';
		mapPage += '</head>\n'

		mapPage += '<body bgcolor="#FFFFFF" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">\n'
		mapPage += '<div style="z-index:1; position: absolute; left: 0px; top:0px;"><a href="javascript:displayMap2(\'map2.gif\');" alt="Click to zoom">\n';
		mapPage += '<img src="graphics/' + mapPath + '" width="463" height="353" border="0" style="z-index:1">\n';
		mapPage += '</a></div>\n'
		mapPage += '<div style="z-index:2; position: absolute; left: 100px; top:10px; font: bold 14pt \'Arial\'; color: #006600; background-color: #CDCDCD;">';
		mapPage += 'Click Map to Zoom</div>\n'
		mapPage += '<div style="z-index:2; position: absolute; left: 99px; top:9px; font: bold 14pt \'Arial\'; color: #339966;">';
		mapPage += 'Click Map to Zoom</div>\n'
		// no longer nec.
		// mapPage += '<div style="z-index:2; position: absolute; left: 150px; top:30px; font: bold 10pt \'Arial\'; color: black; background-color: #CDCDCD;">IE only</div>\n'
		mapPage += '</body>\n'
		mapPage += '</html>\n'

		var increment;
		var windowName;
		increment = 0;
		windowName = "popUp" + increment;
		windowName = window.open("",windowName, "width=463,height=353, menubar=no, status=no, ");
		var myHeight;
		var myWidth;
		myHeight = screen.availHeight - 385;
		myWidth = screen.availWidth - 475;
		//popUp.moveTo(160,200);
			
		windowName.document.write(mapPage);
		windowName.document.close();


		if (windowName && windowName.open) windowName.moveTo(myWidth,myHeight);
		setTimeout(windowName.close, 100000);
}
	function displayMap2(mapPath)
	{ 
		var newDoc = document.open("text/html");
		var mapPage = "";

		mapPage = '<html>\n';
		mapPage += '<head>\n';
		mapPage += '<title>TUC - Map</title>\n'
		mapPage += '<script language="JavaScript" src="map.js">\n';
		mapPage += '<!--\n';
		mapPage += '//-->\n';
		mapPage += '</script>';
		mapPage += '</head>\n'

		mapPage += '<body bgcolor="#FFFFFF" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">\n'
		mapPage += '<div style="z-index:1; position: absolute; left: 0px; top:0px;"><a href="javascript:displayMap3(\'map3.gif\');" alt="Click to zoom">\n';
		mapPage += '<img src="graphics/' + mapPath + '" width="463" height="353" border="0" style="z-index:1">\n';
		mapPage += '</a></div>\n'
		mapPage += '<div style="z-index:2; position: absolute; left: 100px; top:10px; font: bold 14pt \'Arial\'; color: #006600; background-color: #CDCDCD;">';
		mapPage += 'Click Map to Zoom</div>\n'
		mapPage += '<div style="z-index:2; position: absolute; left: 99px; top:9px; font: bold 14pt \'Arial\'; color: #339966;">';
		mapPage += 'Click Map to Zoom</div>\n'
		// no longer nec.
		// mapPage += '<div style="z-index:2; position: absolute; left: 150px; top:30px; font: bold 10pt \'Arial\'; color: black; background-color: #CDCDCD;">IE only</div>\n'
		mapPage += '</body>\n'
		mapPage += '</html>\n'


		newDoc.write(mapPage);
		newDoc.close();
}

	function displayMap3(mapPath)
	{ 
		var newDoc2 = document.open("text/html");
		var mapPage2 = "";

		mapPage2 = '<html>\n';
		mapPage2 += '<head>\n';
		mapPage2 += '<title>TUC - Map</title>\n';

		mapPage2 += '</head>\n'

		mapPage2 += '<body bgcolor="#FFFFFF" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">\n'
		mapPage2 += '<img src="graphics/' + mapPath + '" width="463" height="353" border="0">\n';

		mapPage2 += '</body>\n'
		mapPage2 += '</html>\n'


		newDoc2.write(mapPage2);
		newDoc2.close();
}

