function sC(current,e,cFName,cName,hOffset,wOffset) { if (document.layers) { theString="
"+cName+"
" document.tooltip.document.write(theString) document.tooltip.document.close() document.tooltip.left=e.pageX+14 document.tooltip.top=e.pageY-38 document.tooltip.visibility="show" } else { if(document.getElementById) { elm=document.getElementById("tooltip") elml=current elm.innerHTML=""+cName+"" elm.style.height=elml.style.height elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight)+4+hOffset+"px" //elm.style.top='100px'; elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth)+8+wOffset+"px" elm.style.visibility = "visible" //alert(elml.offsetTop+elml.offsetHeight) } } } function hC(){ if (document.layers) { document.tooltip.visibility="hidden" } else { if(document.getElementById) { elm.style.visibility="hidden" } } }