function noEntry() {

	numeri = new Array(10);
	numeri[0] = 0;
	numeri[1] = 1;
	numeri[2] = 2;
	numeri[3] = 3;
	numeri[4] = 4;
	numeri[5] = 5;
	numeri[6] = 6;
	numeri[7] = 7;
	numeri[8] = 8;
	numeri[9] = 9;
	
	mt=document.Acquisto.Surname.value;
	mt1=document.Acquisto.Name.value;
	mt2=document.Acquisto.Address.value;
	mt3=document.Acquisto.City.value;
	mt4=document.Acquisto.ZIP.value;
	mt5=document.Acquisto.Telephone.value;
	mt6=document.Acquisto.Country.value;
	mt7=document.Acquisto.Email.value;
				
	cognome: 
	if ((mt.substring(0,6)=="")||(mt.length<1)) {
	alert("Field Surname is mandatory.");
	document.Acquisto.Surname.focus();
	return false
	}
	
	controllocognome:
	for (x in numeri) {
		if (mt.indexOf(x) > -1) {
			alert("Field Surname cannot contain numbers.");
			document.Acquisto.Surname.focus();
			return false
			}
	}
	
	nome: 
	if ((mt1.substring(0,6)=="")||(mt1.length<1)) {
	alert("Field Name is mandatory.");
	document.Acquisto.Name.focus();
	return false
	}
	
	controllonome:
	for (x in numeri) {
		if (mt1.indexOf(x) > -1) {
			alert("Field Name cannot contain numbers.");
			document.Acquisto.Name.focus();
			return false
			}
	}
	
	indirizzo:
	if ((mt2.length<1)||(mt2.substring(0,6)=="")) { 
	alert("Field Address is mandatory.");
	document.Acquisto.Address.focus();
	return false
	}
	
	citta:
	if ((mt3.length<1)||(mt3.substring(0,6)=="")) { 
	alert("Field City is mandatory.");
	document.Acquisto.City.focus();
	return false
	}
	
	CAPcheck:
	if ((mt4.lenght<1)||(mt4.substring(0,6)=="")) {
	alert("Please insert a Postal/ZIP Code.");
	document.Acquisto.ZIP.focus();
	return false
	}
	
	provincia:
	if ((mt6.lenght<2)||(mt6.substring(0,6)==" ")) {
	alert("Select a Country from the menu.");
	document.Acquisto.Country.focus();
	return false
	}
	
	emailvalue:
	if ((mt7.lenght<1)||(mt7.substring(0,6)=="")) {
		alert("Please insert a valid e-mail address.");
		document.Acquisto.Email.focus();
		return false
		}
		
	emailcheck:
	if (mt7.indexOf("@") < 0) {
		alert("E-mail address is wrong.");
		document.Acquisto.Email.focus();
		return false
		}

	telefono:
	if ((mt5.lenght<1)||(mt5.substring(0,6)=="")) {
	alert("Please insert a phone number");
	document.Acquisto.Telephone.focus();
	return false
	}
	
	else { return true; }
}

