// JavaScript Document



    // addAddressToMap() is called when the geocoder returns an
    // answer.  It adds a marker to the map with an open info window
    // showing the nicely formatted version of the address and the country code.
 
  function showAddress(address) {
    geocoder.getLatLng(address,function(point) {
        if (!point) {alert(address + " not found");}
			   else {
					 map.setCenter(point, 17);
					 map.setMapType(G_NORMAL_MAP); 
					 var marker = new GMarker(point);
					 map.addOverlay(marker);
					 marker.openInfoWindowHtml(address,{maxWidth:150});
                    } 
				  }  
				    );
					          }
  function showAddressbegin(address) {
    geocoder.getLatLng(address,function(point) {
        if (!point) {alert(address + " not found");}
			   else {
					 map.setCenter(point, thismapzoom);
					 map.setMapType(G_SATELLITE_MAP); 
                    } 
				  }  
				    );
					          }
							  

