// ActionScript Document
function PopupCentrata() {
   var w = 900;
   var h = 900;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open("http://maps.google.it/maps?f=q&hl=it&geocode=&q=Viareggio+LU+via+pescheria+9&sll=43.865151,10.250115&sspn=0.003543,0.009656&ie=UTF8&ll=43.865599,10.248978&spn=0.007085,0.019312&z=16&g=Viareggio+LU+via+pescheria+9&iwloc=addr","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
 }
