
/** Select onglet widget **/
function ChangeTab(num)
		{
			$("#OSRecherche").css({"display":"block"});
			var actu = moteur1.GetOngletEnCours();
			if(num==actu) return;
			//$("#OSRecherche").fadeOut("fast",function () {moteur1.SetOngletCourant(num);});$("#OSRecherche").fadeIn();
			moteur1.SetOngletEnCours(num);
		}
		
function SelectionMenu(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="Selected";
 }
}		

