function pool_func_yes(){
	document.quick_find.pool_value.value='1';
	//alert(document.quick_find.pool_value.value);
}

function pool_func_no(){
	document.quick_find.pool_value.value='0';
	//alert(document.quick_find.pool_value.value);
}

function pets_func_yes(){
	document.quick_find.pets_value.value='1';
	//alert(document.quick_find.pets_value.value);
}

function pets_func_no(){
	document.quick_find.pets_value.value='0';
	//alert(document.quick_find.pets_value.value);
}

function date_begin_only_func_yes(msg){
	if (document.quick_find.date_begin.value=='') {
		alert(msg);
		document.getElementById('only_no').checked='checked';
		return false;
	}
	else document.quick_find.date_begin_only.value='1';
}

function date_begin_only_func_no(){
	document.quick_find.date_begin_only.value='0';
}

function val(content_id){
	valeur = document.getElementById(content_id).value;
	document.getElementById("region").value = valeur;
	//alert(valeur);
}