	/**
	 *
	 * @access public
	 * @return void
	 **/

		function checkForm1(ct_form){

		eval("var nome=document."+ct_form+".nome.value");
		if(nome==''){
			alert('Nome: il valore e richiesto');
			return false;
		}

		eval("var email=document."+ct_form+".email.value");
		if(email==''){
			alert('Email: il valore e richiesto');
			return false;
		}else{
			var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
		   var address = email;
		   if(reg.test(address) == false) {
		      alert('Indirizzo email errato ');
		      return false;
		   }

		}
		eval("var commento=document."+ct_form+".commento.value");
		if(commento==''){
			alert('Commento: il valore e richiesto');
			return false;
		}

		return true;
	}
