function cargaMapa() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	var centro = new GLatLng(36.483899729356246, -4.988822937011719);
	var mj = new GLatLng(36.48268341976825, -4.989713430404663);
	//muestro los controles de zoom
	map.addControl(new GSmallMapControl());
	//muestro los tipos de mapa (híbrido, mapa, satélite)
	//map.addControl(new GMapTypeControl());
	//me sirve para mostrar las coordenadas del centro del mapa
	/*
	GEvent.addListener(map, "moveend", function() {
	  var center = map.getCenter();
	  document.getElementById("message").innerHTML = center.toString();
	});
	*/
	//centro en el mapa lo que estoy buscando
	map.setCenter(centro, 16);
	//muestro un globo de información del sitio con dos pestañas
	var infoTabs = [
		new GInfoWindowTab("Direccion", "<b>Mundi Jovi</b><br>C/ Lagasca n&ordm; 64, Bajo<br />(Entrada por plaza C/ Andaluc&iacute;a)<br />29670 San Pedro Alc&aacute;ntara - M&aacute;laga"),
		new GInfoWindowTab("Telefonos", "Telfs: 629 619 041 – 639 917 857<br />Telf/Fax: 952 78 67 53")
	];
	map.openInfoWindowTabsHtml(mj, infoTabs);
	//pongo una marca para señalar bien el sitio
	var marca = new GMarker(mj);
	map.addOverlay(marca);
	//y un globo cuando se hace click en la marca
	GEvent.addListener(marca, "click", function() {
		marca.openInfoWindowTabsHtml(infoTabs);
	});
	//y dos líneas para indicar el camino para llegar desde Málaga y desde Cádiz
	var malaga = new GPolyline([
		new GLatLng(36.488454250946695, -4.959297180175781),
		new GLatLng(36.484175768590035, -4.985668659210205),
		new GLatLng(36.482726551640454, -4.988415241241455),
		new GLatLng(36.48310611108068, -4.9887800216674805),
		new GLatLng(36.48388247687146, -4.989016056060791),
		new GLatLng(36.48372720433568, -4.989616870880127),
		new GLatLng(36.48303710041166, -4.989488124847412),
		new GLatLng(36.48298534236958, -4.989745616912842),
		new GLatLng(36.482692046144614, -4.989659786224365)
	], "#FF0000", 5);
	var cadiz = new GPolyline([
		new GLatLng(36.47442753733252, -5.00126838684082),
		new GLatLng(36.48258852956482, -4.98828649520874),
		new GLatLng(36.48310611108068, -4.9887800216674805),
		new GLatLng(36.48388247687146, -4.989016056060791),
		new GLatLng(36.48372720433568, -4.989616870880127),
		new GLatLng(36.48303710041166, -4.989488124847412),
		new GLatLng(36.48298534236958, -4.989745616912842),
		new GLatLng(36.482692046144614, -4.989659786224365)
	], "#3366FF", 5);
	map.addOverlay(malaga);		
	map.addOverlay(cadiz);		
  }
}
