var xPos;
var yPos;

function showToolTip(title,msg,evt){
    if (evt) {
        var url = evt.target;
    }
    else {
        evt = window.event;
        var url = evt.srcElement;
    }
    xPos = evt.clientX;
    yPos = evt.clientY;

   var toolTip = document.getElementById("toolTip");
   toolTip.innerHTML = "<p>"+msg+"</p>"; //put this before the <p> to add a header (and remove the " before the <p>):   "<h1>"+title+"</h1>
   toolTip.style.top = "204px" //parseInt(yPos)+2 + "px";
   toolTip.style.left = "810px"; // parseInt(xPos)-104 + "px";
   toolTip.style.visibility = "visible";
   
}

function hideToolTip(){
   var toolTip = document.getElementById("toolTip");
   toolTip.style.visibility = "hidden";
}