function controllo()
{
var noerrore=true;
with(document.modulo) 
{
	if(Message.value=="") 
	{
		Message.style.backgroundColor = "#900";
		noerrore=false;
	}
	if(Email.value=="") 
	{
		Email.style.backgroundColor = "#900";
		noerrore=false;
	}
}
  if(!noerrore)
  {
    var errdiv=document.getElementById('errdiv');
    errdiv.innerHTML='I campi in evidenziati sono obligatori.';
    self.location = '#errdiv';
  }
return noerrore;
}

