function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		var text = "<b>Mocuel S.L.</b><br />Pol. Ind. El Portal<br />Cjto. El Torcal III, Naves 22-32<br />11408 Jerez de la Frontera<br />Tel. 956140120 Fax. 956144312<br /><a href='mailto:info@mocuel.com'>info@mocuel.com</a>";
        map.setCenter(new GLatLng(36.6494,-6.1284), 15);
        map.openInfoWindowHtml(map.getCenter(), text); //document.createTextNode(text));
		map.addControl(new GSmallMapControl());
        //map.addControl(new GMapTypeControl());

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon(G_DEFAULT_ICON);
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);

        // Creates a marker 
        var marker = new GMarker(new GLatLng(36.6494,-6.1284));
		GEvent.addListener(marker, "click", function() {
        	//marker.openInfoWindowHtml("Marker <b>" + letter + "</b>");
			//marker.openInfoWindowHtml(text);
			map.openInfoWindowHtml(new GLatLng(36.6494,-6.1284), text);
        });
        // Add 10 markers to the map at random locations
        map.addOverlay(marker);
	}
}
