// JavaScript Document
<!--

function exp_cl(ind1,ind,ind2,ind3,ind4,ind5)
{

  var s = document.getElementById("ul_" + ind1);
  if (!s) { return; }
  s.style.display = 'inline';
  
    
  var s = document.getElementById("ul_" + ind);
  if (!s) { return; }
  s.style.display = 'none';
  
  var s = document.getElementById("ul_" + ind2);
  if (!s) { return; }
  s.style.display = 'none';
  
  var s = document.getElementById("ul_" + ind3);
  if (!s) { return; }
  s.style.display = 'none';
  
  var s = document.getElementById("ul_" + ind4);
  if (!s) { return; }
  s.style.display = 'none';
  
  var s = document.getElementById("ul_" + ind5);
  if (!s) { return; }
  s.style.display = 'none';
}

-->
