function mapaGoogle() {
	if (GBrowserIsCompatible() && $("input#direccion_mapa").attr("value")) {		
		geocoder = new GClientGeocoder();
		direccion = $("input#direccion_mapa").attr("value");
		if (geocoder) {
			geocoder.getLatLng(
				direccion,
				function(point) {
					if (!point) {
						$("#enlaceMapa").remove();
					} else {
						$("#mapa").show();
						$("#mapa").width(500);
						$("#mapa").height(300);
						$("#mapa").css("margin",5);
						map = new GMap2(document.getElementById("mapa"));
						map.setCenter(point, 15);
						var marker = new GMarker(point);
						map.addOverlay(marker);
						map.addControl(new GSmallMapControl());
						map.addControl(new GMapTypeControl());
					}
				}
			);
		}
	}
	return false;
}

$(document).ready(function(){	
	mapaGoogle();
});
