theHelpUpDiv = null;
document.onmousemove = helpupPos;
var bStatus;


function helpupPos(e) {
     if(bStatus == false){
         var scrTop = (document.documentElement && 
document.documentElement.scrollTop) ? document.documentElement.scrollTop 
: document.body.scrollTop;
         var scrLeft = (document.documentElement && 
document.documentElement.scrollLeft) ? 
document.documentElement.scrollLeft : document.body.scrollLeft;
         x = (document.all) ? window.event.x + scrLeft : e.pageX;
         y = (document.all) ? window.event.y + scrTop : e.pageY;
         if (theHelpUpDiv != null) {
             theHelpUpDiv.style.left = (x + 20) + "px";
             theHelpUpDiv.style.top = (y + 0) + "px";
         }
         window.status = bStatus;
     }
}
function showTheHelpUpDiv(id) {
     bStatus = false;
     if (theHelpUpDiv != null) {
         hideTheHelpUpDiv();
     }
     theHelpUpDiv = document.getElementById(id);
     theHelpUpDiv.style.display = "block"
}
function hideTheHelpUpDiv() {
     if(bStatus == false){
         theHelpUpDiv.style.display = "none";
     }
}
function showTheHelpUpDivStatic() {
     bStatus = true;
}


