function assisi(){nascondi();document.getElementById("rilievi").style.visibility = "visible";  map.clearOverlays(); map.setCenter(new GLatLng(43.063922345214, 12.622599005699158), 18);map.setMapType(G_HYBRID_MAP);// Create a base icon for all of our markers that specifies the// shadow, icon dimensions, etc.var baseIcon = new GIcon();baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";baseIcon.iconSize = new GSize(15, 20);baseIcon.shadowSize = new GSize(20, 20);baseIcon.iconAnchor = new GPoint(9, 20);baseIcon.infoWindowAnchor = new GPoint(9, 2);baseIcon.infoShadowAnchor = new GPoint(18, 25);// Creates a marker whose info window displays the letter corresponding// to the given index.function createMarker(pointC, index) {  var icon = new GIcon(baseIcon); icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";  var marker = new GMarker(pointC, icon);  GEvent.addListener(marker, "mouseover", function() {   marker.openInfoWindowHtml("<table width=200 height=90><tr><TD> <b>" + nomeE[index]);  });  return marker;}for (var i = 0; i < 1; i++) {  var puntoE = pointE[i];  map.addOverlay(createMarker(puntoE, i));}}var finestraE = new Array();finestraE[0] = "http://rilievo.stereofot.it/bsc/abc/euro/ita/umb/pg/assisi/sandamiano/info/info.html";finestraE[1] = "http://rilievo.stereofot.it/bsc/abc/euro/ita/umb/pg/assisi/sandamiano/rilievi/sd_sfg_1990oct08.html" function vaiE(number) {	if (number == null) {         alert("Questo documento non esiste!");         return;      }  var winOpts = "menubar=yes,status=yes,Toolbar=no,location=no,scrollbars=yes,resizable=yes,height=640,width=1100"      win1= window.open(finestraE[number], "Rilievi", winOpts);     win1.focus();} var pointE = new Array();pointE[0] = new GLatLng (43.063922345214, 12.622599005699158) ;var nomeE = new Array();nomeE[0] = " <A HREF=javascript:vaiE(0)>San Damiano in Assisi</A></B><BR><span class=didascalia><A HREF=javascript:vaiE(1)>rilievi del 1990</A></span></td><td><img src=immagini/imgAssisi/SDamiano.jpg  border=1></td></tr></table>";function segnoE(number){ document.getElementById("rilievi").style.visibility = "hidden";  map.clearOverlays();map.setZoom(16);window.setTimeout(function() {  map.panTo(pointE[number]);}, 1000);  var marker = createMarker(pointE[number], nomeE[number]); var tabs = "<table width=200 height=90><tr><TD> <b>" + nomeE[number] ;// Place a marker in the center of the map and open the info window// automatically var marker = new GMarker(pointE[number]); map.addOverlay(marker);  marker.openInfoWindowHtml(tabs,3);map.setMapType(G_HYBRID_MAP);GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml("<table width=300 height=90><tr><TD nowrap class=testo> <b>" + nomeE[number] );  });}// Creates a marker whose info window displays the given numberfunction createMarker(pointE, number) {  var marker = new GMarker(pointE);  return marker;}
