<!--
function controllo(){
	with(document.modulo) 
		{
			if(titolo.value == "") 
				{
					titolo.style.backgroundColor = "#FF9999";
					alert("Compilare il campo TITOLO");
					titolo.focus();
					return false;
				}
					if(titolo.value != "")
						{
							titolo.style.backgroundColor = "#CCFFCC"; 	
							titolo.focus();
						}	
	 
/// Cliente
			if(cliente.value == "") 
				{
						
						alert("Compilare il campo NOME");
						cliente.style.backgroundColor = "#FF9999";
						cliente.focus();
						return false;
				}
				
					if(cliente.value != "")
						{
						cliente.style.backgroundColor = "#CCFFCC"; 	
						cliente.focus();
						}	

/// Email

				if (email.value == "")
				{
					window.alert("Inserire il Campo email");
					email.style.backgroundColor = "#FF9999";
					email.focus();
					return false;
				}
				
				if (email.value.indexOf("@", 0) < 0)
					{
						window.alert("Formato non valido campo email");
						email.style.backgroundColor = "#FF9999";
						email.focus();
						return false;
					}
					
					if (email.value.indexOf(".", 0) < 0)
					{
						window.alert("Formato non valido campo email");
						email.style.backgroundColor = "#FF9999";
						email.focus();
						return false;
					}

 		 }
	 
	return true;
}
//-->