<!-- Google Maps -->
    //<![CDATA[
var map = null;
var geocoder = null;
var centerLatitude = -23.932586;//-23.961548;
var centerLongitude = -46.327248;//-46.304348;
var startZoom = 15;
var address = "Praça Barão do Rio Branco, 14 - Centro - Santos - SP";
var description = "<p style='font-face:Arial;font-size:11px;'><strong>Ozores Transportes Rodovi&aacute;rios Ltda</strong><br />\n Praça Barão do Rio Branco, 14 - 9º Andar - Conjunto 94 - Centro - Santos-SP - CEP 11010-921</p>";

function init() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("mapa"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.addControl(new GOverviewMapControl()); 
		map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);
		geocoder = new GClientGeocoder();
		showAddress(address);
	}
}

function showAddress(address) {  
	geocoder.getLatLng( address, function(point) {
	
		if (!point) { 
			alert(address + " not found");
			
		} else {
			map.setCenter(point, startZoom);
			var marker = new GMarker(point);
			GEvent.addListener(marker, 'click',function() {
				marker.openInfoWindowHtml(description);
			});
			map.addOverlay(marker);
		}
	});
}

window.onload = init;
window.onunload = GUnload;

//]]>