// FUNZIONE PER L'APERTURA DELLE FINESTRE

function Finestra(indirizzo,alt,lar) {
	var mywindow, indirizzo;
	dimensione = "width=" + lar + ",height=" + alt ;
	mywindow = window.open(indirizzo,"finestra","left=0,top=0,resizable=yes,scrollbars=yes," + dimensione);  
}


//Login

function invioLog()
		{
		if (document.MandaLog.usr.value == "") alert('Inserisci username');
		else if (document.MandaLog.psw.value == "") alert('Inserisci password');
		else document.MandaLog.submit();
		}

//registrazione

function APRINOPSW(){
window.open("../import/npPSW.cfm","NOPSW","toolbar=no,scrollbars=auto,width=650,height=360,left=0,top=0")
}


function APRIREGISTRATI(){
window.open("../import/registrati.cfm","REGISTRATI","toolbar=no,scrollbars=yes,width=690,height=480,left=0,top=0")
}




