// JavaScript Document
function Send(obj){
O = function $(element){
	return document.getElementById(element);
	}
µ = function $(element){
	return document.getElementById(element).options[document.getElementById(element).selectedIndex].value;
	}
if(!µ('service')) {alert('Veuillez sélection un corps de métier');
	document.getElementById('service').focus();
	return false;
	}  
if(O('dept') && !µ('dept')) {alert('Veuillez sélection un département');
	document.getElementById('dept').focus();
	return false;
	} 
if(O('ville') && obj=="ville" && !µ('ville')) {alert('Veuillez sélection une ville');
	document.getElementById('ville').focus();
	return false;
	}
var Catch = "-"; 
if(O('service')) var Url = µ('service');
if(O('region')) Url += Catch+µ('region');
if(O('dept')) Url += Catch+µ('dept');
if(O('ville')) Url += Catch+µ('ville');	
if(O('ville')) O('recherche').action = "/entreprise/"+Url+".html"; else O('recherche').action = Url+".html";
O('recherche').submit();
}
