<script language="Javascript" type="text/javascript">
<!--
function trim(stringa){
while (stringa.substring(0,1) == ' '){
stringa = stringa.substring(1, stringa.length);
}
while (stringa.substring(stringa.length-1, stringa.length) == ' '){
stringa = stringa.substring(0,stringa.length-1);
}
return stringa;
}
function ControllaForm()
{
var controllo=false;
var nome=trim(document.segnalo.nome.value);
var email=trim(document.segnalo.email.value);
var soggetto=trim(document.segnalo.soggetto.value);
var messaggio=trim(document.segnalo.messaggio.value);
var code=trim(document.segnalo.code.value);
if (nome == "" )
{
controllo=true;
alert("Attenzione: Il campo NOME non può essere vuoto.\nIl form non sarà inviato\n\nWarning: the NAME field can not be empety.\nThe form will not be sent");
}
if (email.indexOf("@") == -1 )
{
controllo=true;
alert("Attenzione: indirizzo E-MAIL non valido.\nIl form non sarà inviato\n\nWarning: E-MAIL adress is not valid.\nThe form will not be sent");
}
if (soggetto == "" )
{
controllo=true;
alert("Attenzione: Il campo OGGETTO non può essere vuoto.\nIl form non sarà inviato\n\nWarning: the SUBJECT field can not be empety.\nThe form will not be sent");
}
if (messaggio == "" )
{
controllo=true;
alert("Attenzione: Il MESSAGGIO non può essere vuoto.\nIl form non sarà inviato\n\nWarning: the MESSAGE can not be empety.\nThe form will not be sent");
}
if (code == "" )
{
controllo=true;
alert("Attenzione: inserisci il CODICE di sicurezza.\nIl form non sarà inviato\n\nWarning: enter the security CODE.\nThe form will not be sent");
}
if (controllo){return false}else{return true}
}
// -->
</script>