function control(){
	var errore='';
	if (document.frmAll.Nome.value == ""){
		errore +='\n' + '- Nome';
		}
	if (document.frmAll.Cognome.value == ""){
		errore +='\n' + '- Cognome';
		}
 	if (document.frmAll.E_mail.value == ""){
		errore +='\n' + '- E-mail';
	   }

//alert (document.frmAll.Privacy.length);

    //var privacy=false;
   // for (var i=0; i<document.frmAll.Privacy.length;i++){
		 if (document.frmAll.Privacy.checked == false){
			errore +='\n' + '- Accettazione trattamento dei dati';
		 }
	//}

	/*if (privacy == false){
		errore +='\n' + '- Normativa';
	}*/
 	if (errore!=''){
		alert("Le seguenti informazioni sono obbligatorie:" + errore);
		return false;
	}else{
		document.frmAll.target='_self';
		document.frmAll.action="http://ws50.venice-plaza.it/cgi-bin/web2mail.cgi";
		document.frmAll.submit();
	}
}