anche così non funziona...:master:
<script language="JavaScript">
<!--
function submitIt(theform) {
if (theform.nome.value == "") {
alert("Manca il nome...");
theform.nome.focus();
return false;
}
if (theform.cognome.value == "") {
alert("Manca il cognome...");
theform.cognome.focus();
return false;
}
if ((theform.email.value =="")||
(theform.email.indexOf("@") == -1) ||
(theform.email.indexOf(".") == -1) ||
(theform.email.length < 7))
{
alert("Valorizzare E-mail correttamente.");
theform.email.focus();
return false;
}
}
-->
</script>