//Verifico i dati inseriti
function ErrorCheck(){
var contatto = "";
contatto = document.RichiediPreventivo.contatto.value;

var input_error_message = "";

          if (!contatto){
			        input_error_message = "error"
			        alert("Compile the field Contact with of the useful information to the aim of being able to you to contact.");
			        document.RichiediPreventivo.contatto.focus();
			        return false;
          }
          if (input_error_message == ""){
          	document.RichiediPreventivo.frmRichiediPreventivo.value = "yes";
           document.RichiediPreventivo.submit();
          }
}

