function doSubmit(Page){
	if (document.Contatti.Nome.value == "" || document.Contatti.Cognome.value == "" || document.Contatti.Indirizzo.value == "" || document.Contatti.Cap.value == "" || document.Contatti.Citta.value == "" || document.Contatti.Prov.value == "" || document.Contatti.Email.value == "" || document.Contatti.Messaggio.value == ""){
		alert("Compilare i campi in grassetto");
	}else{
		document.Contatti.action = Page;
		document.Contatti.submit();
	}//end if (document.Contatti.Nome.value == "" || document.Contatti.Cognome.value...
}//end function doSubmit(Page)


function doLogin(Page){
	if (document.Accesso.user.value == "") {
		alert("Compilare il campo USERNAME");
	} else if (document.Accesso.pwd.value == "") {
		alert("Compilare il campo PASSWORD");
	} else {
		document.Accesso.action = Page;
		document.Accesso.submit();
	}
}