function verifContact(obj){
	testMail = verifMail('contact','mailc');
	if(obj.votredemandec[obj.votredemandec.selectedIndex].value==0){
		obj.votredemandec.focus();
		messageAlert("Dovete selezionare un tipo di domanda.","votredemandec");        
		return false;
	}
	if(obj.vousetesc[obj.vousetesc.selectedIndex].value==0){
		obj.vousetesc.focus();
		messageAlert("Chi siete ?","vousetesc");
		return false;
	}
	if(obj.nomc.value==""){
		obj.nomc.focus();
		messageAlert("Il vostro nome ? obbligatorio.","nomc");
		return false;
	}
	if(obj.prenomc.value==""){
		obj.prenomc.focus();
		messageAlert("Il vostro nome ? obbligatorio.","prenomc");
		return false;
	}
	if((obj.telc.value=="") && (obj.mailc.value=="") && (obj.portablec.value=="")){
		obj.telc.focus();
		messageAlert("Dovete indicate un numero di telefono o un maglio.","telc");
		return false;
	}else if(obj.mailc.value!="" && testMail == false){
		obj.mailc.focus();
		messageAlert('<br /><br />Il mail entrato non è valido !',"mailc");
		return false;
	}
	return true;
}
