    //<![CDATA[

	var map = null;
	var geocoder = null;

    function load() 
	{
    	if (GBrowserIsCompatible()) 
	  	{
        	// Crea mappa
			map = new GMap2(document.getElementById("map"));
        	
			// Creo GeoCoder Max 1.6 query/sec
			geocoder = new GClientGeocoder();
		
			// Imposta centro su Roma (LAT 41.90, LONG 12.49)
			map.setCenter(new GLatLng(41.90, 12.49), 5);
			
			// Visualizza controlli - TIPO MAPPA
			map.addControl(new GMapTypeControl());
			
			// Visualizza controlli - ZOOM GRANDE
			map.addControl(new GLargeMapControl());

      	}
    }

// Crea il marker con la label passata come parametro
function createMarker(point, label) 
{
	// Variabile marker
	var marker = new GMarker(point);
  	
	// Crea listener per il click sull'oggetto
	GEvent.addListener(marker, "click", function() 
	{
    	marker.openInfoWindowHtml('<div style="background-color:#ffffff; width:300px; text-align:center; margin-top:0px; height:150px; font-family:verdana; font-size:12px;">'+'<p style="text-align:center; margin-top:0px; margin-bottom:0px"><img src=http://www.hotel-flora.it/flora/logo-hotel-flora.jpg width=279 height=56></p><p style="text-align:center; margin-top:0px; margin-bottom:0px;"> '+ label+'<br />Tel: [+39] 06.94.16.110 <br /> Fax [+39] 06.94.16.546</p><p style="text-align:left; margin-top:5px; margin-bottom:5px; margin-left:60px;">E-mail:<a style="color:#800000" href="mailto:info@hotel-flora.it">info@hotel-flora.it</p></div>');
  	});
  
  	return marker;
}
function showAddress(address) 
{
	geocoder.getLatLng(address,
    function(point) 
	{
    	if (!point) 
		{
        	// Indirizzo non trovato, cerca nel database.
			alert(address + " non trovato!");
      	} 
		else 
		{
        	// Indirizzo trovato, centra la mappa ;)
			map.setCenter(point, 13);
			
			// Crea il marker
			map.addOverlay(createMarker(point, address));
      	}
    });
}
    //]]>

