
//oK 45.4295500000000, 10.9908861111111 (sx dim, dx aum)
//<![CDATA[
function load() {
    if (GBrowserIsCompatible()) { 
     function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.setCenter(new GLatLng(46.0660444444444, 11.1222333333333), 16);
    
    
      var point = new GLatLng(46.0660444444444, 11.1222333333333);
      var marker = createMarker(point,'<div><img src="images/portone_80.gif" width="83" height="60" border="0"  />&nbsp;<b>Libroteka</b><br />Via Mazzini, 14 Trento (TN)<br /><br />Phone ++39 0461 238530</div>')
      map.addOverlay(marker);

    }
    
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
  }
//]]>

