

var dragapproved=false
var minrestore=0
var initialwidth,initialheight
var ie5=document.all&&document.getElementById
var ns6=document.getElementById&&!document.all

function iecompattest(){
return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}


function loadwindow(divid, width,height){
if (!ie5&&!ns6)
window.open(url,"","width=width,height=height,scrollbars=0")
else{
document.getElementById(divid).style.display=''
document.getElementById(divid).style.width=initialwidth=width+"px"
document.getElementById(divid).style.height=initialheight=height+"px"
document.getElementById(divid).style.left="50px"
document.getElementById(divid).style.top=ns6? window.pageYOffset*1+30+"px" : iecompattest().scrollTop*1+30+"px"

}
}


function closeit(){
document.getElementById("dwindow").style.display="none"
}

