


function createMarker(point,description){var marker=new GMarker(point);GEvent.addListener(marker,"mouseover",function(){marker.openInfoWindowHtml(description);});return marker;}
function load(){if(GBrowserIsCompatible()){var map=new GMap2(document.getElementById("map"));map.setCenter(new GLatLng(45.409323,10.959373),14);map.setUIToDefault();map.enableRotation();}
map.addOverlay(createMarker(new GLatLng(45.409323,10.959373),"<div class='text'><h2>Athlon Verona Palestra</h2>Via Evangelista Torricelli, 27<br />37136 Verona (Veneto)<br /><a target='_blank' href='http://maps.google.it/maps/ms?gl=it&hl=it&ie=UTF8&msa=0&msid=110508054448422476456.00047fa41cbd9e4b13d53&ll=45.418425,10.942383&spn=0.020875,0.055747&t=p&z=15&iwloc=00047fa41cc1465b668cb'>Indicazioni stradali</a><br />045 95 08 95<br /></div>"));}