// JavaScript Document
 <!--
  var stile = "top=50, left=50, width=550, height=510, status=no, menubar=no, toolbar=no scrollbar=no";
     function vai(apri) {
        window.open(apri, "", stile);
     }
 //-->
//<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.it/maps?f=d&amp;source=s_d&amp;saddr=45.676097,13.101175&amp;daddr=Viale+Europa,+33054+Lignano+Sabbiadoro+Udine+(Aquasplash+-+Sporting+Center+Lignano)&amp;hl=it&amp;geocode=%3BFSUHuQIdixrIACEoKmgJwfYhDg&amp;mra=dme&amp;mrcr=0&amp;mrsp=0&amp;sz=16&amp;sll=45.675662,13.101282&amp;sspn=0.007092,0.013583&amp;ie=UTF8&amp;ll=45.675662,13.101282&amp;spn=0.007092,0.013583&amp;output=embed"></iframe><br /><small><a href="http://maps.google.it/maps?f=d&amp;source=embed&amp;saddr=45.676097,13.101175&amp;daddr=Viale+Europa,+33054+Lignano+Sabbiadoro+Udine+(Aquasplash+-+Sporting+Center+Lignano)&amp;hl=it&amp;geocode=%3BFSUHuQIdixrIACEoKmgJwfYhDg&amp;mra=dme&amp;mrcr=0&amp;mrsp=0&amp;sz=16&amp;sll=45.675662,13.101282&amp;sspn=0.007092,0.013583&amp;ie=UTF8&amp;ll=45.675662,13.101282&amp;spn=0.007092,0.013583" style="color:#0000FF;text-align:left">Visualizzazione ingrandita della mappa</a></small>
function initialize() { 
var latlng = new google.maps.LatLng(45.67818083908209, 13.099222183227539); 
var myOptions = { zoom: 13, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},navigationControlOptions: {style: google.maps.NavigationControlStyle.BIG},scrollwheel:false }; 
var map = new google.maps.Map(document.getElementById("map-lignano"), myOptions); 

var bermudaTriangle; 
 
  var map = new google.maps.Map(document.getElementById("map-lignano"), 
      myOptions); 
 
  var triangleCoords = [ 
    new google.maps.LatLng(45.677925970874796, 13.100788593292236), 
    new google.maps.LatLng(45.67690648643684, 13.098986148834228), 
    new google.maps.LatLng(45.67860061948108, 13.097505569458007), 
    new google.maps.LatLng(45.67982995824764, 13.100380897521972) ,
	new google.maps.LatLng(45.67918530836016, 13.10044527053833)
  ]; 
 
  // Construct the polygon 
  // Note that we don't specify an array or arrays, but instead just 
  // a simple array of LatLngs in the paths property 
  bermudaTriangle = new google.maps.Polygon({ 
    paths: triangleCoords, 
    strokeColor: "#FF33FF", 
    strokeOpacity: 0.8, 
    strokeWeight: 2, 
    fillColor: "#FF33FF", 
    fillOpacity: 0.35 
  }); 
 
  bermudaTriangle.setMap(map); 




var contentString = '<div id="content" style="font-family:Arial">'+ 
    '<div id="siteNotice">'+ 
    '</div>'+ 
    '<h2 id="firstHeading" class="firstHeading">Gulliverlandia</h2>'+ 
    '<div id="bodyContent">'+ 
    '<p style="font-size:12px"><b style="font-size:14px">Via san Giuliano 13<br /> 33054 Lignano Sabbiadoro (Ud)</b>'+ 
	'<br />Tel: +39 0431 423133<br />Fax: +39 0431 429613'+
	'</p>'+ 
    '</div>'+ 
    '</div>'; 
var newsize = new google.maps.Size(-60, 180);
var infowindow = new google.maps.InfoWindow({ 
    content: contentString,
	pixelOffset: newsize
}); 

var image = new google.maps.MarkerImage('logo.png', 
      // This marker is 20 pixels wide by 32 pixels tall. 
      new google.maps.Size(229, 182), 
      // The origin for this image is 0,0. 
      new google.maps.Point(0,0), 
      // The anchor for this image is the base of the flagpole at 0,32. 
      new google.maps.Point(48, 175)); 
var latlangnew = new google.maps.LatLng(45.6789604287451, 13.097591400146484);
var marker = new google.maps.Marker({ 
      position:  latlng,
      map: map,  
      title:"Lignano Sabbiadoro",
	  icon: image
									});



google.maps.event.addListener(marker, 'click', function() { 
  infowindow.open(map,marker); 
});
} 