function ConfermaPreventivo(){

	var blnOK=true;

		if (blnOK){
	
			if (document.FormPreventivo.Nome.value==""){
				window.alert ("Compilare Campo Nome");
				document.FormPreventivo.Nome.focus();
				blnOK=false;		
			}
		}
				if (blnOK){
	
			if (document.FormPreventivo.Cognome.value==""){
				window.alert ("Compilare Campo Cognome");
				document.FormPreventivo.Cognome.focus();
				blnOK=false;		
			}
		}
				if (blnOK){
	
			if (document.FormPreventivo.Telefono.value==""){
				window.alert ("Compilare Campo Telefono");
				document.FormPreventivo.Telefono.focus();
				blnOK=false;		
			}
		}

		if (blnOK){
				if (document.FormPreventivo.Email.value.indexOf(".") == -1){
				window.alert ("Indirizzo di E-Mail non valido !");
				document.FormPreventivo.Email.focus();
				document.FormPreventivo.Email.select();
				blnOK=false;		
			}
		}
		if (blnOK){
				if (document.FormPreventivo.Email.value.indexOf("@") == -1){
				window.alert ("Indirizzo di E-Mail non valido !");
				document.FormPreventivo.Email.focus();
				document.FormPreventivo.Email.select();
				blnOK=false;		
			}
		}

		if (blnOK){
			if (document.FormPreventivo.chkaccetto.checked==false){
				window.alert('Devi accettare la Privacy.');
				blnOK=false;		
			}
		}		
		if (blnOK){
			document.FormPreventivo.Cliccato.value="OK";
			document.FormPreventivo.submit();
		}
}

function ConfermaUsato(){

	var blnOK=true;

		if (blnOK){
	
			if (document.FormValutazioneUsato.Nome.value==""){
				window.alert ("Compilare Campo Nome");
				document.FormValutazioneUsato.Nome.focus();
				blnOK=false;		
			}
		}
				if (blnOK){
	
			if (document.FormValutazioneUsato.Cognome.value==""){
				window.alert ("Compilare Campo Cognome");
				document.FormValutazioneUsato.Cognome.focus();
				blnOK=false;		
			}
		}
				if (blnOK){
	
			if (document.FormValutazioneUsato.Telefono.value==""){
				window.alert ("Compilare Campo Telefono");
				document.FormValutazioneUsato.Telefono.focus();
				blnOK=false;		
			}
		}

		if (blnOK){
				if (document.FormValutazioneUsato.Email.value.indexOf(".") == -1){
				window.alert ("Indirizzo di E-Mail non valido !");
				document.FormValutazioneUsato.Email.focus();
				document.FormValutazioneUsato.Email.select();
				blnOK=false;		
			}
		}
		if (blnOK){
				if (document.FormValutazioneUsato.Email.value.indexOf("@") == -1){
				window.alert ("Indirizzo di E-Mail non valido !");
				document.FormValutazioneUsato.Email.focus();
				document.FormValutazioneUsato.Email.select();
				blnOK=false;		
			}
		}

		if (blnOK){
			if (document.FormValutazioneUsato.chkaccetto.checked==false){
				window.alert('Devi accettare la Privacy.');
				blnOK=false;		
			}
		}		
		if (blnOK){
			document.FormValutazioneUsato.Cliccato.value="OK";
			document.FormValutazioneUsato.submit();
		}
}
    

