function popup(nomefile,larghezza,altezza) {
	parametri="menubar=no,location=no,toolbar=no,status=no,scrollbars=no,resizable=no,width="
	parametri=parametri+larghezza+",height="+altezza
	newWin=open('','',parametri)
	newWin.location.href=nomefile
}

/* FUNZIONE POP UP UNIVERSALE */
function popupf(nomefile,larghezza,altezza) {
	parametri="menubar=no,location=yes,toolbar=yes,status=no,scrollbars=yes,resizable=yes,width="
	parametri=parametri+larghezza+",height="+altezza
	newWin=open('','',parametri)
	newWin.location.href=nomefile
}


