function qsearch()
{
  if(document.getElementById)
  {
    document.getElementById('search').style.display = (document.getElementById('search').style.display == 'none')? 'inline':'none';
  }
}

function hover(txt, pos)
{
 if(document.getElementById)
 {
   with(document.getElementById('tooltip'))
   {
     firstChild.nodeValue = txt;
     style.left = document.getElementById('topNavi').parentNode.offsetLeft + pos.offsetLeft;
     style.display = 'inline';
   }
 }
}


function clc(obj)
{
  location.href = obj.firstChild.href;
}

function hide()
{
  if(document.getElementById)
  {
    document.getElementById('tooltip').style.display = 'none';
  }
}