<!-- Controlla form 
function Richiesta(){


var password=document.modulo.password.value;
if(password==""){
alert("Insert Password");
document.modulo.password.focus();
return false;
	}
var password_di_convalida=document.modulo.password_di_convalida.value;
if(password_di_convalida==""){
alert("Confirm the password");
document.modulo.password_di_convalida.focus();
return false;
	}
var ragsociale=document.modulo.ragsociale.value;
if(ragsociale==""){
alert("Insert the name of the Shop");
document.modulo.ragsociale.focus();
return false;
}
var referente=document.modulo.referente.value;
if(referente==""){
alert("Insert the name and surname of Manager of the Shop");
document.modulo.referente.focus();
return false;
	}
var piva=document.modulo.piva.value;
if(piva==""){
alert("Insert the VAT number");
document.modulo.piva.focus();
return false;
	}
var descrizione=document.modulo.descrizione.value;
if(descrizione==""){
alert("Insert the description of the Shop");
document.modulo.descrizione.focus();
return false;
	}
var indirizzo=document.modulo.indirizzo.value;
if(indirizzo==""){
alert("Insert the Address");
document.modulo.indirizzo.focus();
return false;
	}
var citta=document.modulo.citta.value;
if(citta==""){
alert("Inserit 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;
	}
var telefono=document.modulo.telefono.value;
if(telefono==""){
alert("Insert the Phone");
document.modulo.telefono.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 e-Mail is not valid");
document.modulo.email.focus();
return false;
	}
if(document.modulo.privacy.checked==false){
alert(" If you don't accept the Policy Privacy, your registration 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 -->