   function load() { 

      if (GBrowserIsCompatible()) { 

        var map = new GMap2(document.getElementById("mapaGoogle")); 

        map.addControl(new GSmallMapControl()); 

        map.addControl(new GMapTypeControl()); 

        var center = new GLatLng(    42.813613,  -1.644194); 

        map.setCenter(center, 13);

         // Our info window content 

		

        var infoTabs = [ 

	  new GInfoWindowTab("Tab #1",
						 
						 "<style type='text/css'>"+
						 	"table#tablaInfo{border:0 !important;  border-collapse:collapse; margin:0 !important; padding:0 !important;}"+
						 	"table#tablaInfo td{font-family:arial,verdana; font-size:0.75em; color:#000; border:0 !important; text-align:left !important; }"+
						 	"table#tablaInfo td span{font-weight:bold; color:#e14b26;}"+
						 "</style>"+
						 
						 "<table cellpadding='0' cellspacing='0' id='tablaInfo'>"+
							 "<tr>"+
								"<td></td>"+
								"<td width='5px'></td>"+
								"<td valign='top'>"+
										"<span>ACEMNA</span><br>"+
										"García Ximénez 3-1º <br>"+
										"Pamplona<br>"+
										"Navarra (Espa&ntilde;a)<br>"+
										"TF. +34 948 204063 <br>"+
										"<a href='mailto:info@acemna.es'>info@acemna.es</a><br>"+
								"</td>"+
							"</tr>"+
						"</table>")

		  ]; 



        // Place a marker in the center of the map and open the info window 

        // automatically 


			

        var marker = new GMarker(map.getCenter()); 

        GEvent.addListener(marker, "click", function() { 

          marker.openInfoWindowTabsHtml(infoTabs); 

        }); 

        map.addOverlay(marker); 

        marker.openInfoWindowTabsHtml(infoTabs); 

 

        /*var marker = new GMarker(center, {draggable: true}); 

 

        GEvent.addListener(marker, "dragstart", function() { 

          map.closeInfoWindow(); 

        }); 

 

        GEvent.addListener(marker, "dragend", function() { 

          marker.openInfoWindowHtml("Desplazando icono..."); 

        }); 

 

        map.addOverlay(marker); 

 */

      } 

    } 

    //]]> 

