<!-- Controlla form 
function Richiesta(){

var ragsociale=document.modulo.ragsociale.value;
if(ragsociale==""){
alert("Insert the Company name");
document.modulo.ragsociale.focus();
return false;
	}
var piva=document.modulo.piva.value;
if(piva==""){
alert("Insert the VAT no.");
document.modulo.piva.focus();
return false;
	}
var indirizzo=document.modulo.indirizzo.value;
if(indirizzo==""){
alert("Inserit the Address");
document.modulo.indirizzo.focus();
return false;
	}
var citta=document.modulo.citta.value;
if(citta==""){
alert("Insert the City");
document.modulo.citta.focus();
return false;
	}
var cap=document.modulo.cap.value;
if(cap==""){
alert("Inserrt the ZIP/Postal Code");
document.modulo.cap.focus();
return false;
		}
var telefono=document.modulo.telefono.value;
if(telefono==""){
alert("Insert the phone number");
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 inserted is not valid");
document.modulo.email.focus();
return false;
	}
if(document.modulo.privacy.checked==false){
alert("If not by the  consensus on Privacy, you can not follow your order online");
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 -->
