function jump(){ 
  link = document.form1.menu1.options[document.form1.menu1.selectedIndex].value;
  if(link != ""){
    document.location.href=link;
  }
}

function apri(cosa){

    myFull=window.open(cosa,"FullWindow","fullscreen=yes");

}


function apri_immagine(cosa){
		image = new Image();
		image.src = cosa;
		height = this.image.height;
		width = this.image.width;
		nuova = window.open('', "ciao", "scrollbars=no,toolbars=no,width=" + width + ",height=" + height);
		nuova.document.writeln ("<html><head><title>Foto</title></head><body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>");
		nuova.document.writeln ("<img src='" + cosa + "'>");
		nuova.document.writeln ("</body></html>");
		nuova.document.close();
		nuova.focus();
		}


function apri_mis(url, nome, h, w){

    newwin = window.open(url,nome,"toolbar=no, scrollbars=yes, resizible=no, width=" + w + ", height=" + h);

    newwin.focus();
}

function sicuro(url){
		if (confirm("ATTENZIONE: Si conferma l'eliminazione?")){
			document.location.href = url;
		}
}
	
