﻿function inAgent(n) {return navigator.userAgent.toLowerCase().indexOf(n)}
function XY(e) {
 if(!e)e=window.event;
 var scrollY=document.body.scrollTop; //HTML页滚动条
 if(scrollY==0)scrollY=document.documentElement.scrollTop; //XHTML页滚动条
 var scrollX=document.body.scrollLeft;
 if(scrollX==0)scrollX=document.documentElement.scrollLeft;
 var o= 0<inAgent('msie')? {'X':e.clientX + scrollX,'Y':e.clientY + scrollY} : {'X':e.pageX,'Y':e.pageY};
 return o;
}
function winShow(e,U,T){ //要把event传进来
 var rd=document.getElementById('winDIV_');
 if(rd){
 rd.style.display='';
 rd.style.top=XY(e).Y+'px'; //坐标
 document.getElementById('winTT_').innerHTML=T?T:''; //标题
 document.getElementById('winFrame_').src=U?U:'about:blank'; //子页面url
 }
}
function winHide(){
 document.getElementById('winDIV_').style.display='none';
}
document.write("<div id='winDIV_' style='position:absolute;left:200px;top:200px;width:485px;height:200px;z-index:9988;background-color:#feffee;border:3px #DDEEFF outset;display:none'><div style='margin:0 5px 0 5px;height:20px;line-height:20px;text-align:left'><span style='float:right;cursor:pointer' onclick='winHide()'>关闭</span><span id='winTT_' style='font-weight:bold'></span></div><iframe id='winFrame_' name='winFrame_' src='about:blank' width='100%' height='180' frameborder='0' style='clear:both'></iframe></div>");
