function valida()
{
	if (document.getElementById('nome').value == "" || document.getElementById('cognome').value == "" ||
			document.getElementById('telefono').value == "" || document.getElementById('email').value == "" )
	{
		alert('Tutti i campi sono obbligatori contrassegnati con * sono obbligatori');
		return false;
	}
	if (confirm('Send the email?'))
		document.getElementById('conferma').submit();
	return false;
}

