var map;var geocoder;var point;var place;function initialize(idmapa){map=new GMap2(document.getElementById(idmapa),{size:new GSize(940,400)});map.addControl(new google.maps.LargeMapControl());geocoder=new GClientGeocoder();}function addAddressToMap(response){if(!response||response.Status.code!=200){alert("Desculpe, o endereço não foi encontrado!");}else{place=response.Placemark[0];point=new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);map.setCenter(point,15);marker=new GMarker(point);map.addOverlay(marker);}}function showLocation(){var address=document.forms[0].q.value;geocoder.getLocations(address,addAddressToMap);}function findLocation(address){document.forms[0].q.value=address;showLocation();document.forms[0].q.value="";}function Oculta(cxa,cxaimagem){if(document.getElementById(cxa).style.display=='none'){document.getElementById(cxa).style.display='block';document.getElementById(cxaimagem).src='images/nolines_minus.gif';}else{document.getElementById(cxa).style.display='none';document.getElementById(cxaimagem).src='images/nolines_plus.gif';}}function Localiza(map){if(document.getElementById(map).style.display=='none'){document.getElementById(map).style.display='block';}else{document.getElementById(map).style.display='none';}}function abreMapa(url){window.open(url,'Mapa','toolbar=no,location=no,border=0,status=no,menubar=no,scrollbars=no,resizable=no,width=700px,height=400');}window.onunload=GUnload;
