// JavaScript Document
    //<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(45.483717,12.241216), 15);
        function createMarker(point, description) {
          var marker = new GMarker(point);
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(description);
          });
          return marker;
        }
		/*MARKER*/
        map.addOverlay( createMarker(new GLatLng(45.483717,12.241216), 
					"<div style=\"font-size:16px; color:#990000; font-weight:bolder; margin:5px 25px 5px 25px;\">Avvocato Luigi Quintarelli</div>"+
					"<div style=\"font-size:13px; color:#003366; margin:5px 0px 5px 0px;\">"+
						"Via Torino, 1 - 30172 Mestre (VE)<br>"+
						"Tel./Fax. +39 041 5311085<br>"+
						"<a href=\"mailto: mail@quintalex.it\" style=\"color:#003366\">mail@quintalex.it</a><br>"+
					//	"<a href=\"mailto: quintalex@pec.it\" style=\"color:#003366\">Posta certificata: quintalex@pec.it</a>"+
					"</div>"));    
     }
    }

    //]]>

