window.offscreenBuffering=true;
function hlt(n,i,what)
{
 var tbc="#cfb789" //'t'ele 'b'ack 'c'olor
 var mba="#FF0000" //'m'enu 'b'order 'a'ctive color
 var mbp="#ffffcc" //'m'enu 'b'order 'p'assive color
 if(document.getElementById('tele').style.backgroundColor!=tbc) document.getElementById('tele').style.backgroundColor=tbc;
 if(i=='on')
 {
  document.getElementById("m"+n).style.backgroundColor=mba
  document.getElementById("m"+(n+1)).style.backgroundColor=mba;
 }
 else
 {
  document.getElementById("m"+n).style.backgroundColor=mbp;
  document.getElementById("m"+(n+1)).style.backgroundColor=mbp;
 }
 if(what!=null)
 {
  var lines='<table class="TV">';
  if(document.getElementById('tele'))
  {
   for(i=0; i<what.length; i++)
   {
    if(what[i].split("$$$")[1]!=null) lines=lines+'<tr><td><a href="'+what[i].split("$$$")[1]+'" title="'+what[i].split("$$$")[2]+'">'+what[i].split("$$$")[0]+'</a></td></tr>';
    else lines=lines+'<tr><td>'+what[i]+'</td></tr>';
   }
   lines+="</table>";
   document.getElementById('tele').innerHTML=lines;
  }
 }
}
