﻿// JScript 文件

    function showuserinfoshowmsg() 
    {        
//        var rightedge = document.body.clientWidth-event.clientX;
//        var bottomedge = document.body.clientHeight-event.clientY;
//        if (rightedge < userinfoshowmsg.offsetWidth)
//        userinfoshowmsg.style.left = document.body.scrollLeft + event.clientX - userinfoshowmsg.offsetWidth;
//        else
//        userinfoshowmsg.style.left = document.body.scrollLeft + event.clientX;
//        if (bottomedge < userinfoshowmsg.offsetHeight)
//        userinfoshowmsg.style.top = document.body.scrollTop + event.clientY - userinfoshowmsg.offsetHeight;
//        else
//        userinfoshowmsg.style.top = document.body.scrollTop + event.clientY;
        userinfoshowmsg.style.visibility = "visible";
        return false;
    }
            
    function hideuserinfoshowmsg() 
    {
        userinfoshowmsg.style.visibility = "hidden";
    }

    
