// controllo form per newsletter in top
<!-- 
function checkTopDiving(theForm) { 
if (theForm.nome.value == "") { alert("Inserisci il tuo Nome, grazie"); theForm.nome.focus(); return (false); } 
if (theForm.emailg.value.indexOf('@', 0) == -1) { alert("Inserisci il tuo indirizzo Email corretto, grazie"); theForm.emailg.focus(); return (false); } 
if (theForm.emailg.value.indexOf('.', 0) == -1) { alert("Inserisci il tuo indirizzo Email corretto, grazie"); theForm.emailg.focus(); return (false); }

}
 //-->
