function verifForm(theform){
	myAlert.corectY=-150;
	    if(!theform.search_produits1.checked && !theform.search_produits2.checked && !theform.search_produits3.checked){
		theform.search_produits1.focus();
		messageAlert('<br />Dovete al minimun selezionare un tipo di ricerca ed una citt','search_produits1');
		return false;
	}
    	if(theform.ville_produits[theform.ville_produits.selectedIndex].value==0){
		theform.ville_produits.focus();
		messageAlert('<br />Dovete al minimun selezionare un tipo di ricerca ed una citt','ville_produits');
		return false;
	}
    if(!theform.standing_produits1.checked && !theform.standing_produits2.checked && !theform.standing_produits3.checked && !theform.standing_produits4.checked){
    	theform.standing_produits5.checked = true;
	}
    if(!theform.type_produits1.checked && !theform.type_produits2.checked && !theform.type_produits3.checked && !theform.type_produits4.checked && !theform.type_produits5.checked && !theform.type_produits6.checked){
    	theform.type_produits7.checked = true;
	}
	return true;
}