function initialize()
{
	if (GBrowserIsCompatible())
	{
		var map = new GMap2(document.getElementById("mapa_eurotruck2000"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GScaleControl());
		//map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		geocoder = new GClientGeocoder();
		if (geocoder)
		{
			geocoder.getLatLng(
				"C/ Alemania 78, 12006 Castellon De La Plana",
				function(point)
				{
					if (!point)
					{
						alert("C/ Alemania 78, 12006 Castellon De La Plana - NO ENCONTRADA");
					}
					else
					{
						map.setCenter(point, 13);
						var marker = new GMarker(point);
						map.addOverlay(marker);
						marker.openInfoWindowHtml("<h4 style=\"margin:0; padding-bottom:5px;\">Eurotruck2000 S.L.</h4>AC/ Alemania 78,<br />12006 Castellon De La Plana<br />Tel&eacute;fono: +34 964 24 55 30<br />Fax: +34 964 25 54 91<br />Email: <a href='mailto:eurotruck2000@eurotruck2000.com'>eurotruck2000@eurotruck2000.com</a><br />Web: <a href='/'>www.eurotruck2000.com</a>");
					}
				}
			);
		}
	}
}