function load()
{
    document.getElementById('map').style.visibility = "visible";
    document.getElementById('map').style.display = "block";
    
    document.getElementById('infomap').style.visibility = "visible";
    document.getElementById('infomap').style.display = "block";
    
    if (GBrowserIsCompatible()) {
        var testo_html = "<div id=\"ballon\"><strong>Elettrosistemi</strong><br /><em>di Giorgio Tavoni</em><br />Via Buonviaggio 281/285, La Spezia<br />Tel: 0187.51.74.51 - Fax: 0187.56.92.17</div>";
        var map = new GMap2(document.getElementById("map"));                
        map.addControl(new GSmallMapControl());	            
        map.setCenter(new GLatLng(44.130971,9.847183), 16);
        
        // Crea un marker nel punto specificato 
        // con una descrizione HTML associata
        function createMarker(point, description)
        {
            var marker = new GMarker(point);
            GEvent.addListener(marker, "click", function()
                                                {
                                                    marker.openInfoWindowHtml(description);
                                                });
            return marker;
        }
        
        map.addOverlay(createMarker(new GLatLng(44.130971,9.847183), testo_html));
    }
}
