var kiDulty_PopDiv={container:"#kiDulty_PopDiv",getPos:function(d){var a=0;var b=0;var c;d=d.get(0);a=d.offsetLeft;b=d.offsetTop;while(d.offsetParent!=null){c=d.offsetParent;if(c.tagName.toLowerCase()!="body"){b+=c.offsetTop-c.scrollTop;a+=c.offsetLeft-c.scrollLeft}d=c}return{left:a,top:b}},draw:function(){var a='<div id="kiDulty_PopDiv"></div>';$("body").append(a)},show:function(a){if($(this.container).length==0){this.draw()}var c=this.getPos(a.target);var b=a.style.width.split("px")[0]-0;if(c.left+b>=document.body.offsetWidth){c.left=c.left-b}$(this.container).css(a.style);$(this.container).css({left:c.left,top:c.top});$(this.container).html(a.html);$(this.container).unbind();if(a.clickHandler){a.clickHandler()}$(this.container).show()},hide:function(){$(this.container).hide()}};