<!-- Begin
function ViewData(user,ValueShow) {
var mousex = window.event.x;        // mouse location capture event
var mousey = window.event.y;        // mouse location capture event
user.style.visibility = ValueShow;  // show or hide respective Example
// user.style.left = mousex + 5;       // place popup at the mouse X (left) location
user.style.left = mousex;       // place popup at the mouse X (left) location
user.style.top = mousey;            // place popup at the mouse Y (top) location
}
//  End
-->
