// JavaScript Document
  var geocoder;
  var map;
  var contentString = '<div id="content">'+
                        '<div id="siteNotice"></div>'+
						'<h3 id="firstHeading" class="firstHeading" style="color:#990000">Avvocato Luigi Quintarelli</h3>'+
						'<div id="bodyContent">'+
						  '<p>'+
						    "Via Torino, 1<br>" + 
							"30172 Mestre (VE)<br>"+
							"Tel./Fax. +39 041 5311085<br>"+
						  '</p>'+
                          '<center><a href="mailto: mail@quintalex.it" style="color:#003366">mail@quintalex.it</a></center>'+
						'</div>'+
                      '</div>';
  function initialize() {
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(45.483675,12.241245);
    var myOptions = {zoom: 17,center: latlng,mapTypeId: google.maps.MapTypeId.ROADMAP }
    var infowindow = new google.maps.InfoWindow({  content: contentString });
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    var marker = new google.maps.Marker({position: latlng,  map: map, animation: google.maps.Animation.DROP,title:"Avvocato Luigi Quintarelli"});
    google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,marker); });
  }

