var centerLatitude = -33.39980;
var centerLongitude = -70.59178;
var description = 'Centro de Desarrollo de la Persona - Bücher y Middleton Ltda en Eduardo Marquina 3937 of 407, esquina con Vitacura (altura Lo Castillo) - estacionamiento para automóviles en Edo.Marquina';
var startZoom = 16;
var map;

function addMarker(latitude, longitude, description) {
	var marker = new GMarker(new GLatLng(latitude, longitude));
	GEvent.addListener(marker, 'click',
		function() {
			marker.openInfoWindowHtml(description);
		}
	);

	map.addOverlay(marker);
}

function init() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);

		addMarker(centerLatitude, centerLongitude, description);
	}
}

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