<!--

var theObj="";


function toolTip(image,me,text) {
  //javascript:alert (me)//me is the main link
  //javascript:alert (image)//actual image to show
  //javascript: alert (text)//text to display
  
  if (image == '')
  {
    
  }
  else
  {
    showit = '<img src=http://www.ndorfnz.com/images/show/resize_image.php?info='+image;  
  }
  //alert (showit)

  showit = showit+' border=1';
  showit = showit+' style=float:left; margin-right:15px;>';

  showit = showit+' <div align="center"><b><font color=#000000></b></font><br>'+text+'<br><br>Click To Enlarge</div>';
  //alert (showit)

  theObj=me;
  theObj.onmousemove=updatePos;
  document.getElementById('toolTipBox').innerHTML=showit;
  document.getElementById('toolTipBox').style.display="block";
  window.onscroll=updatePos;

}

function toolTipText(me,text) {
  //javascript:alert (me)//me is the main link
  //javascript:alert (image)//actual image to show
  //javascript: alert (text)//text to display

  //showit = '<p>';
  

  //showit = showit+' border=1';
  //showit = showit+' style=float:left; margin-right:15px;>';

  showit = '<div align="center"><b><font color=#000000></b></font>'+text+'<br>(Click To View Log)</div>';
  //alert (showit)

  theObj=me;
  theObj.onmousemove=updatePos;
  document.getElementById('toolTipBox').innerHTML=showit;
  document.getElementById('toolTipBox').style.display="block";
  window.onscroll=updatePos;

}

function updatePos() {
  var ev=arguments[0]?arguments[0]:event;
  var x=ev.clientX;
  var y=ev.clientY;
  diffX=24;
  diffY=0;
  document.getElementById('toolTipBox').style.top  = y-2+diffY+document.body.scrollTop+ "px";
  document.getElementById('toolTipBox').style.left = x-2+diffX+document.body.scrollLeft+"px";
  theObj.onmouseout=hideMe;
}
function hideMe() {
  document.getElementById('toolTipBox').style.display="none";
}
-->