
		//    added for email security   this will hide the email address from spammers    eib 8/26/10
			<!--//--><![CDATA[//><!--
				function email(name, domain, extension, subject) {
				if (!document.write) return false;
				if (document.write) {
					var name; var domain; var extension;
					document.write("<a href=\"" + "mailto:" + name + "@" + domain + "." + extension + subject+"\">" + name + "@" + domain + "." + extension + "<\/a>");
					}
				}

					//    picfix   eib  11/06/10
			browserName = navigator.appName;
			browserVer = parseInt(navigator.appVersion);

			ns3up = (browserName == "Netscape" && browserVer >= 3);
			ie4up = (browserName.indexOf("Microsoft") >= 0 && browserVer >= 4);

			function doPic(imgName,widthO,heightO,Lmarg,Tmarg) {
				if (ns3up || ie4up) {
					imgOn = ("" + imgName);
					document.mainpic.src = imgOn;
				}
				document.getElementById("map_canvas").style.visibility="hidden";
				document.getElementById("mainpic").style.width=widthO;
				document.getElementById("mainpic").style.height=heightO;
				document.getElementById("mainpic").style.marginLeft=Lmarg;
				document.getElementById("mainpic").style.marginRight=Lmarg;
				document.getElementById("mainpic").style.marginTop=Tmarg;
				document.getElementById("mainpic").style.marginBottom=Tmarg;
				document.getElementById("mainpic").style.visibility="visible";
			}
			//--><!]]>

				var geocoder;
				var map;
				function initialize(straddress,widthO,heightO,Lmarg,Tmarg) {
					geocoder = new google.maps.Geocoder();
					var myOptions = {
						zoom: 14,
						mapTypeId: google.maps.MapTypeId.ROADMAP
					}
					map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
					codeAddress(straddress);
					document.getElementById("mainpic").style.width=widthO;
					document.getElementById("mainpic").style.height=heightO;
					document.getElementById("mainpic").style.marginLeft=Lmarg;
					document.getElementById("mainpic").style.marginRight=Lmarg;
					document.getElementById("mainpic").style.marginTop=Tmarg;
					document.getElementById("mainpic").style.marginBottom=Tmarg;
					document.getElementById('mainpic').style.visibility='hidden';
					document.getElementById('map_canvas').style.visibility='visible';
				}

				function codeAddress(straddress) {
					var address = straddress;
					geocoder.geocode( { 'address': address}, function(results, status) {
						if (status == google.maps.GeocoderStatus.OK) {
							map.setCenter(results[0].geometry.location);
							var marker = new google.maps.Marker({
								map: map, 
								position: results[0].geometry.location
							});
						} else {
							alert('Geocode was not successful for the following reason: ' + status);
						}
					});
				}


