
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);


function confirmReset()
 {
	var resetForm = confirm(
		"Vuoi cancellare tutto ? / Do you want erase everything ?");
	if (resetForm == true) 
		return true;
	return false;
}



function submitForm()

{

if ((modulo.cognome.value == "")||(modulo.nome.value == "")||(modulo.email.value == ""))
{
alert("Dati non corretti/Not correct !");
modulo.cognome.focus();
return (false);
}

if ((modulo.cognome.value.length < 3)||(modulo.nome.value.length < 3)||(modulo.email.value.length < 8) || (modulo.email.value.length >45))
{
alert("Dati non corretti/Not correct !");
modulo.cognome.focus();
return (false);
}

if (modulo.nome.value == modulo.cognome.value)

{
alert("Dati non corretti/Not correct !");
modulo.cognome.focus();
return (false);
}


  txt=document.modulo.email.value;
  if (txt.indexOf("@")<3)
{
alert("Dati non corretti/Not correct !");
modulo.cognome.focus();
return (false);
}
  

}



// FINE NASCOSTO A BROWSER INCOMPATIBILI -->




