function validazione(){
with(document.form) {
	if(nome.value=="") {
		alert("Inserire il nome utente");
		nome.focus();
		return false;
	}
	if(email.value=="") {
		alert("Inserire l'indirizzo e-mail");
		email.focus();
		return false;
	}
	var stato=true;
	if(email.value.indexOf(" ")!=-1) {
		email.focus();
		stato=false;
	}
	var chiocciola=email.value.indexOf("@");
	if(chiocciola<2) {
		email.focus();
		stato=false;
	}
	var punto=email.value.indexOf(".", chiocciola);
	if(punto<chiocciola+3) {
		email.focus();
		stato=false;
	}
	var lung=email.value.length;
	if(lung-punto<3) {
		email.focus();
		stato=false;
	}
	//if(stato) {
		//alert("E-mail valida");
	//}else{
	if(stato==false) {
		alert("E-mail non valida");
	return stato;
	}
}
	if(privacy.value=="0") {
		alert("Inserire l'indirizzo e-mail");
		privacy.focus();
		return false;
	}		
//alert("Il modulo è completo, grazie");
return true;
}