<!--

    var map = null;
    var geocoder = null;
    var disponivel=true;
    function initialize(end,emp,cidade) {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("meumapa"));
        geocoder = new GClientGeocoder();
	map.addControl(new GLargeMapControl());
        showAddress(end,emp,cidade);

      }
    }

    function showAddress(address,emp,cidade) {
	if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
		showAddress(cidade,"Empresa não encontrada",cidade);
            } else {
              map.setCenter(point, 14);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml('<br><strong>'+emp+'</strong><br><br>'+address);
            }
          }
        );
      }
    }

//-->