function ___Popup(C,B,A){this.___popupId=C;this.___width=B;this.___height=A;this.___flag=1;this.___topPos=null}___Popup.prototype.show=function(){var A=document.getElementById(this.___popupId);var C;var B;if(typeof window.pageXOffset!="undefined"&&typeof window.innerWidth!="undefined"){C=(window.innerWidth-this.___width)/2+window.pageXOffset;B=(window.innerHeight-this.___height)/2+window.pageYOffset}else{C=(document.body.clientWidth-this.___width)/2+document.body.scrollLeft;B=(document.body.clientHeight-this.___height)/2+document.body.scrollTop}if(B<=0){B=10}A.style.left=C.toString()+"px";A.style.top=(this.___topPos!=null)?this.___topPos.toString()+"px":B.toString()+"px";A.style.display="block"};___Popup.prototype.hide=function(){var A=document.getElementById(this.___popupId);A.style.display="none"};___Popup.prototype.setTopPos=function(A){this.___topPos=A};
