// JavaScript Document
    //<![CDATA[
    function showMap()
    {
        if (GBrowserIsCompatible()) {
            
            // Ottiene l'elemento della pagina chiamato "map" (il DIV) 
            //   e crea la mappa utilizzandolo come contenitore.
            var map = new GMap2(document.getElementById("map"));                
            
            // Aggiunge dei controlli per lo zoom e lo spostamento 
            map.addControl(new GSmallMapControl());	            
            
            // Centra la mappa su Roma, con uno zoom di 5 
            map.setCenter(new GLatLng(41.018668,14.327567), 15);
			
		 function createMarker(point, description) {
          var marker = new GMarker(point);
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(description);
          });
          return marker;
        }
		map.addOverlay(					   
            createMarker(new GLatLng(41.018668,14.327567), "<form id='directionform97_hwyua_0' action='http://maps.google.com/maps' method='get' target='_blank' onsubmit='DirectionMarkersubmit97_hwyua_0(this);return false;' class='mapdirform'> <strong>Eurostrutture s.r.l.</strong>, S.P. 336 (ex S.S. 87), Km. 20.600 - 81025 Marcianise (Ce) Italia <br />Percorso:<input type='radio'  checked name='dir' value='to'>A qui&nbsp;<input type='radio'  name='dir' value='from'>Da qui<br />Indirizzo:<input type='text' class='inputbox' size='20' name='saddr' id='saddr' value='' /><br /><input type='hidden' class='radio' name='dirflg' value='' checked /><input value='Calcola' class='button' type='submit' style='margin-top: 2px;'><input type='hidden' name='hl' value='it'/><input type='hidden' name='daddr' value='41.018668,14.327567'/></form>")		
        );       
        }
    }
    //]]>