﻿function hidedetails() {
            $("#details").hide();
        }
        function showdetails(thisObj, showObj) {
            var d = $(thisObj);
            var pos = d.offset();
            var t = pos.top - 23; //+ d.height() + 5; // 弹出框的上边位置
            var l = pos.left - 30;  //+ d.width() + 5;  // 弹出框的左边位置
            $("#" + showObj).css({ "top": t, "left": l }).show();
        }
        function divout(thisobj) {
            $(thisobj).hide();
        }
        function divout2(thisobj) {
            $("#" + thisobj).hide();
        }
