
function popupWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',status=1,location=1,scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


function openMap(){
	hs.expand(document.getElementById("map1"))
}

 function apriPopup(w,h,titolo,foto) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
 	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',status=0,location=0,scrollbars=no,resizable=no';
  var testo = window.open("", "", winprops);
      testo.document.write("<html>\n");
      testo.document.write(" <head>\n");
      testo.document.write("  <title>" + titolo+ "</title>\n");
      testo.document.write(" </head>\n");
      testo.document.write("<body bgcolor='#000000'>\n");
      testo.document.write("<img src=\"" + foto + "\"/>\n");
      testo.document.write("</body>\n");
      testo.document.write("</html>");
 }
