
<!-- // hide
function openZipmap() {
alert('This map is licensed through an agreement with\nPHOENIX MAPPING SERVICE, div of Wide World of\nMaps, Inc. http://www.maps4u.com\nCopyright ©2005 Wide World of Maps, Inc.\nReproduction Prohibited by Law.');
}
window.onload = function (){
   var addressCleaner = function (){
      this.href = this.href.split("?")[0].replace("notspam", "");
      this.onclick = function (){};
      this.oncontextmenu = function (){};
   };
   var links = document.getElementsByTagName("a");
   for (var i=0; i < links.length; i++){
      if(links[i].href.indexOf("mailto:") !== -1){
         links[i].onclick = addressCleaner;
		 links[i].oncontextmenu = addressCleaner;
      }
   }
};
// end hide -->
