<!--

function showtip(current, e, num) {
 if (document.layers) { // Netscape 4.0+
   theString="<DIV style=\"font-size:12px;layer-background-color:lightyellow;background-color:lightyellow;padding:1px\">"+num+"</DIV>"
   document.tooltip.document.write(theString)
   document.tooltip.document.close()
   document.tooltip.left=e.pageX+14
   document.tooltip.top=e.pageY+2
   document.tooltip.color="black"
   document.tooltip.visibility="show"
 }
 else {
   if(document.getElementById) { // Netscape 6.0+ and Internet Explorer 5.0+
	elm=document.getElementById("tooltip")
	elm.innerHTML=num
	elm.style.visibility = "visible"
   }
 }
}

function hidetip(){
 if (document.layers) {// Netscape 4.0+
   document.tooltip.visibility="hidden"
 }
 else {
   if(document.getElementById) { // Netscape 6.0+ and Internet Explorer 5.0+
	elm=document.getElementById("tooltip")
	elm.style.visibility="hidden"
   }
 }
}
//-->
