function ShowHint(current, e, text, width)
 {
  if (document.all&&document.readyState=="complete")
   {
    document.all.tooltip.innerHTML='<table width='+width+' border=0 cellspacing=0 cellpadding=0>'+
    '<tr><td class="FrameTL"><img src=images/blank.gif width=1 height=1></td><td class="FrameTM"><img src=images/blank.gif width=1 height=1></td><td class="FrameTR"><img src=images/blank.gif width=1 height=1></td></tr>'+
    '<tr><td class="FrameML"><img src=images/blank.gif width=1 height=1></td><td class="tDesc FrameBG">'+text+'</td><td class="FrameMR"><img src=images/blank.gif width=1 height=1></td></tr>'+
    '<tr><td class="FrameBL"><img src=images/blank.gif width=1 height=1></td><td class="FrameBM"><img src=images/blank.gif width=1 height=1></td><td class="FrameBR"><img src=images/blank.gif width=1 height=1></td></tr></table>';
    document.all.tooltip.style.pixelLeft=event.clientX+document.body.scrollLeft+10
    document.all.tooltip.style.pixelTop=event.clientY+document.body.scrollTop+10
    document.all.tooltip.style.visibility="visible"
   }
  else if (document.layers)
   {
    document.tooltip.document.nstip.document.write(text)
    document.tooltip.document.nstip.document.close()
    document.tooltip.document.nstip.left=0
    document.tooltip.left=e.pageX+10
    document.tooltip.top=e.pageY+10
    document.tooltip.visibility="show"
   }
 }

function MoveHint(current, e)
 {
  if (document.all&&document.readyState=="complete")
   {
    document.all.tooltip.style.pixelLeft=event.clientX+document.body.scrollLeft+10
    document.all.tooltip.style.pixelTop=event.clientY+document.body.scrollTop+10
   }
  else if (document.layers)
   {
    document.tooltip.left=e.pageX+10
    document.tooltip.top=e.pageY+10
   }
 }

function HideHint()
 {
  if (document.all)
   document.all.tooltip.style.visibility="hidden"
  else if (document.layers)
   {
    clearInterval(currentscroll)
    document.tooltip.visibility="hidden"
   }
 }