var xPos;var yPos;function showToolTip(e,d,a){if(a){var c=a.target}else{a=window.event;var c=a.srcElement}xPos=a.clientX;yPos=a.clientY;var b=document.getElementById("toolTip");b.innerHTML="<h1>"+e+"</h1><p>"+d+"</p>";b.style.top=parseInt(yPos)+2+"px";b.style.left=parseInt(xPos)+2+"px";b.style.visibility="visible"}function hideToolTip(){var a=document.getElementById("toolTip");a.style.visibility="hidden"};