    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		
		//controles
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
//        map.setCenter(new GLatLng(37.385435,-4.768066), 7);
        map.setCenter(new GLatLng(36.715971,-4.433454), 16);

 	function createMarker(point, texto) {
		var lineaidealIco = new GIcon();
		lineaidealIco.image = "/imagenes_web/lineaideal_ico_mapa.png";
		lineaidealIco.iconSize = new GSize(60, 64);
		lineaidealIco.shadowSize = new GSize(60, 64);
		lineaidealIco.iconAnchor = new GPoint(60, 64);
		lineaidealIco.infoWindowAnchor = new GPoint(60, 64);
		markerOptions = { icon:lineaidealIco };
  			var marker = new GMarker(point, markerOptions);
  			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(texto);
  			});
  		return marker;
	}
 	function createMarker2(point, texto) {
		var lineaidealIco = new GIcon();
		lineaidealIco.image = "/imagenes_web/lineaideal_ico_mapa2.png";
		lineaidealIco.iconSize = new GSize(60, 64);
		lineaidealIco.shadowSize = new GSize(60, 64);
		lineaidealIco.iconAnchor = new GPoint(0, 64);
		lineaidealIco.infoWindowAnchor = new GPoint(0, 64);
		markerOptions = { icon:lineaidealIco };
  			var marker = new GMarker(point, markerOptions);
  			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(texto);
  			});
  		return marker;
	}
		//Clínica Línea Ideal Málaga
		  var texto_larios = "<b style='font-size:13px;'>Cl&iacute;nica L&iacute;nea Ideal</b><br><span style='font-size:12px'>c/ Walt Whitman 3 - 2ºA</span><br/><i>Edif Centro Comercial LARIOS CENTRO</i><br><b style='font-size:12px; color:#666666'>29002 M&aacute;laga</b><br><b style='font-size:12px; color:#666666'>Tel: 952 60 60 97</b>";
		  var punto_larios = new GLatLng(36.715971,-4.433454);
 		  map.addOverlay(createMarker2(punto_larios, texto_larios));

		//Clínica Línea Ideal Marbella
		  var texto_marbella = "<b style='font-size:13px;'>Grupo M&eacute;dico Premier</b><br><span style='font-size:12px'>Avda. Ricardo Soriano 36 </span><br/><i>Edif. María III</i><br /><b style='font-size:12px; color:#666666'>29601 Marbella</b><br><b style='font-size:12px; color:#666666'>Tel: 952 85 70 70</b>";
		  var punto_marbella = new GLatLng(36.506877,-4.872093);
 		  //map.addOverlay(createMarker(punto_marbella, texto_marbella));
  
}
    }
	
    //]]>
