/*begin*/
/*2011-04-21 09:26:51*/
var windowWidth=document.documentElement.clientWidth;var windowHeight=document.documentElement.clientHeight;var popupHeight=$("#win").height();var popupWidth=$("#win").width();var popupHandelRecenter;function showWin(){var winNode=$("#win");reCenter();winNode.fadeIn("slow");popupHandelRecenter=setInterval(reCenter,20)}function hide(){var winNode=$("#win");winNode.fadeOut("slow");clearInterval(popupHandelRecenter)}
function reCenter(){var leftpx=windowWidth/2-$("#win").width()/2;$("#win").css({top:0,left:leftpx});var MyDiv=$("#win")[0];var MyDiv_h=MyDiv.offsetHeight;var MyDiv_w=MyDiv.offsetWidth;var height=pageHeight();var width=pageWidth();var top=topPosition();var left=leftPosition()}function pageWidth(){return window.innerWidth!=null?window.innerWidth:document.documentElement&&document.documentElement.clientWidth?document.documentElement.clientWidth:document.body!=null?document.body.clientWidth:null}
function pageHeight(){return window.innerHeight!=null?window.innerHeight:document.documentElement&&document.documentElement.clientHeight?document.documentElement.clientHeight:document.body!=null?document.body.clientHeight:null}function topPosition(){return typeof window.pageYOffset!="undefined"?window.pageYOffset:document.documentElement&&document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop?document.body.scrollTop:0}
function leftPosition(){return typeof window.pageXOffset!="undefined"?window.pageXOffset:document.documentElement&&document.documentElement.scrollLeft?document.documentElement.scrollLeft:document.body.scrollLeft?document.body.scrollLeft:0};

/*end*/
