function gLoad() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(37.4419, -122.1419), 1);

map.removeMapType(G_HYBRID_MAP);
var mapControl = new GMapTypeControl();
map.addControl(mapControl);
map.addControl(new GLargeMapControl());

}

var geocoder = new GClientGeocoder();

function showAddress(address) 
{
	geocoder.getLatLng(
	address,
	function(point) {
	  if (!point) {
	    alert(address + " not found");
	  } else {
	    map.setCenter(point, 13);
	    var marker = new GMarker(point);
	    map.addOverlay(marker);
	    marker.openInfoWindowHtml("<p class='googlemap'>Sakura Home Restaurant<br/>Japanese Style Cuisine<br/>2775 Monroe Avenue, Rochester, NY<br/>(585) 288-8130<br/><a style='color:gray' href='http://maps.google.com/maps?f=q&hl=en&geocode=&q=2775+Monroe+Avenue,+Rochester,+NY&sll=37.0625,-95.677068&sspn=44.928295,88.066406&ie=UTF8&g=2775+Monroe+Avenue,+Rochester,+NY&ll=43.112513,-77.550323&spn=0.005083,0.01075&z=17&iwloc=addr'>Get Directions</a>");
	  }
	}
	);
}

showAddress("2775 Monroe Avenue, Rochester, NY");


}
