function ovr(id)
{
  if(obj = document.getElementById('d' + id))
   obj.className = 'hi';

  if(obj = document.getElementById('l' + id))
   obj.style.color = '#FFFFFF';
}

function out(id)
{
  if(obj = document.getElementById('d' + id))
   obj.className = 'lo';

  if(obj = document.getElementById('l' + id))
   obj.style.color = '#AFAFAF';
}

function clc(id)
{
  if(obj = document.getElementById('l' + id))
   top.location.href = obj.getAttribute('href');
}

/* function noStatus()
{
  if(document.all && window.event.srcElement.tagName == 'A')
   window.event.srcElement.title = window.status = ' ' + window.event.srcElement.innerText.replace(/^ +/, '').replace(/ +$/, '').replace(/ +/g, ' ') + ' ';
  else
   window.status = 'Fertig';

  return true;
}

document.onmouseover = noStatus;
document.onmouseup   = noStatus; */
