
// /////////////////////////////////////////////////////////////////////////////
// FONCTIONS ///////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////////

/*
function tousleschefs(url)
{
	alert(url);
	if(url!="") { document.location.href = url; }
}
*/
function tousleschefs(e){
	var source = (document.all)?window.event.srcElement:e.target ;
	var url = source.options[source.selectedIndex].value;
	//alert(url);
	if(url!="") { document.location.href = url; }
}

// /////////////////////////////////////////////////////////////////////////////

// Form Tous les chefs
// -------------------
function initSelect()
{
	if(document.getElementById("chefs")){
		document.getElementById("chefs").onchange = tousleschefs;
	}
	
	aspnetFormfiltrer();
}


// Form aspnetForm
// -------------------
function aspnetFormfiltrer()
{
	if(document.aspnetForm){
		var f = document.aspnetForm;
		f.minceur.value = "True";
		f.chef.value = "True";
	}
}

// /////////////////////////////////////////////////////////////////////////////
// FIN FONCTIONS ///////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////////






window.onload = initSelect;