// JavaScript Document
function controlloMailNewsLetter(){
var test;
test="true";

	if (test=="true") {
					if(document.news.email.value=="") {
					alert("Compila il campo!");
					document.news.email.focus();
					test="false";
					}
				}
	if (test=="true") {
				if (document.news.email.value.indexOf("@")==-1)
					{					
					alert("Indirizzo email non valido!");
					document.news.email.focus();
					document.news.email.value="";
					test="false";
					}
				}
	if (test=="true") {
				if (document.news.email.value.indexOf(".")==-1)
					{					
					alert("Indirizzo email non valido!");
					document.news.email.focus();
					document.news.email.value="";
					test="false";
					}
				}
	if (test=="true") {
				if (document.news.email.value.length < 7)
					{					
					alert("Indirizzo email non valido!");
					document.news.email.focus();
					document.news.email.value="";
					test="false";
					}
				}
	
	if (test=="true")
				{
				document.news.submit();
				document.news.email.value="";
				}
	}



