// IdUnMultiplesAvecListe
//
//0 : Eteint
//1 : Allumé  
//2 : Sélectionné

if (typeof permananentSelection_UM == "undefined") permananentSelection_UM = true;
if (typeof TimerDelayForOff_UNIK == "undefined") TimerDelayForOff_UM = 1500;
if (typeof pressedDest_UM == "undefined") pressedDest_UM = null;

function TimerGo_UM(dest, id)
{
  if (dest != null)
  {
    document[dest].src = eval(id + '_0' + '.src');
    
    pressedDest_UM = null;
  }
}

function ShowUM(id, dest) // "NT_n","NT345"
{
  IdChaine = id.substring(0,id.length-2);// "NT"
  Extention = id.substring(id.length-1,id.length);// "n"
  
  if(pressedDest_UM == dest) return;
  if(Extention == '2')
  {
    if (pressedDest_UM != null) document[pressedDest_UM].src = eval(IdChaine + '_0' + '.src')
    pressedDest_UM = dest;
    
    if (!permananentSelection_UM)
    {
      if (dest) setTimeout("TimerGo_UM('" + dest + "','" + IdChaine + "')",TimerDelayForOff_UM)
    }
  };
  
  if (dest != null) document[dest].src = eval( id + '.src')
}
