//<![CDATA[
var map = null;
var geocoder = null;


function load() {

	if (GBrowserIsCompatible()) {
		
		var WINDOW_HTML1 = '<div style="width: 204px; padding-right: 10px; font-family:Arial, Helvetica, sans-serif; font-size:11px;">SS. 89 km 78.500 <br />71010 - San Menaio del Gargano (FG)<br />Tel. 0884.96.81.05 - Fax 0884.96.84.65 <br /> Recapito invernale 349.23.42.400<br /><a style="color:red;" href="mailto:info@calenella.it">info@calenella.it</a></div>';

		var n=41.93421029871695;	
		var e=15.983691215515136;
		

		map = new GMap2(document.getElementById("map"));
		geocoder = new GClientGeocoder();

		map.setCenter(new GLatLng(n, e), 15);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		
		var icon = new GIcon();
		icon.image = "http://www.calenella.it/images/ico_sopra.png";
		icon.shadow = "http://www.calenella.it/images/ico_sotto.png";
		icon.iconSize = new GSize(75, 37);
		icon.shadowSize = new GSize(75, 37);
		icon.iconAnchor = new GPoint(10, 30);
		icon.infoWindowAnchor = new GPoint(17, 0);

		var marker1 = new GMarker(new GLatLng(n, e ),icon);
		map.addOverlay(marker1);

		GEvent.addListener(marker1, "click", function() {
			marker1.openInfoWindowHtml(WINDOW_HTML1); 
		});
		
		marker1.openInfoWindowHtml(WINDOW_HTML1); 
		
		GEvent.addListener(map, "moveend", function() {
		  var center = map.getCenter();
		  document.getElementById("message").innerHTML = center.toString();

		  
});

	}
}


function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 10);
        var marker = new GMarker(point);
        map.addOverlay(marker);
        marker.openInfoWindowHtml(address);
      }
    }
  );
}




//]]>