
function validazione(){
with(document.formNewsletter) {
	if(name.value=="") {
		alert("Inserire il nome");
		name.focus();
		return false;
	}
	
	if(surname.value=="") {
		alert("Inserire il cognome");
		surname.focus();
		return false;
	}
	
	if(mail.value=="") {
		alert("Inserire l' e-mail");
		mail.focus();
		return false;
	}
	
	var stato=true;
	if(mail.value.indexOf(" ")!=-1) {
		mail.focus();
		stato=false;
	}
	
	var chiocciola=mail.value.indexOf("@");
	if(chiocciola<2) {
		mail.focus();
		stato=false;
	}
	
	var punto=mail.value.indexOf(".", chiocciola);
	if(punto<chiocciola+3) {
		mail.focus();
		stato=false;
	}
	
	var lung=mail.value.length;
	if(lung-punto<3) {
		mail.focus();
		stato=false;
	}

	//if(stato) {
		//alert("E-mail valida");
	//}else{

	if(stato==false) {
		alert("E-mail non valida");
		return stato;
	}
}

return true;
}
