<!-- Controlla form 
function Richiesta(){

var nome=document.modulo.nome.value;
if(nome==""){
alert("Insert the Name");
document.modulo.nome.focus();
return false;
	}
var cognome=document.modulo.cognome.value;
if(cognome==""){
alert("Insert the Surname");
document.modulo.cognome.focus();
return false;
}
var email=document.modulo.email.value;
var userLength = document.modulo.email.value.length;
if(userLength<5 || email==""){
alert("Insert the e-Mail.");
document.modulo.email.focus();
return false;
	}
if (email.indexOf('@', 0) == -1 || email.indexOf('.', 0) == -1){ 
alert("The inserted e-Mail is not valid.");
document.modulo.email.focus();
return false;
	}
var descrizione=document.modulo.descrizione.value;
if(descrizione==""){
alert("Insert the request");
document.modulo.descrizione.focus();
return false;
	}
var citta=document.modulo.citta.value;
if(citta==""){
alert("Inserrt the City");
document.modulo.citta.focus();
return false;
	}
var cap=document.modulo.cap.value;
if(cap==""){
alert("Insert the ZIP/Postal Code");
document.modulo.cap.focus();
return false;
	}
var provincia=document.modulo.provincia.value;
if(provincia==""){
alert("Insert the State/Province");
document.modulo.provincia.focus();
return false;	
	}
if(document.modulo.privacy.checked==false){
alert(" If you don't accept the Policy Privacy, your request form will be not accepted");
return false;
	}
}
// Fine Controlla form

// Controllo Valore Numerico
function AbortEntry(sMsg, eSrc) {
window.alert(sMsg);
eSrc.focus();
 }
function HandleError(eSrc) {
var val = parseInt(eSrc.value);
if (isNaN(val)){
return AbortEntry("Il valore deve essere numerico.", eSrc);
  }
if (val < 0){
return AbortEntry("Il valore numerico deve essere positivo.", eSrc);
  }
 }
 // Fine Controllo Valore Numerico -->
