function controlla()
{           
	if ((document.modulo.from.value.indexOf("@")==(-1)) || (document.modulo.from.value.indexOf(".")==(-1)) || 
	(document.modulo.from.value.value=="") || (document.modulo.from.value.value=="undefined"))             
	
	{
		alert("Indirizzo email  non corretto!");     
		document.modulo.from.focus();
		return false;
	}
	return true;
}                             