//DHTML Window script- Copyright Dynamic Drive (http://www.dynamicdrive.com)
//For full source code, documentation, and terms of usage,
//Visit http://www.dynamicdrive.com/dynamicindex9/dhtmlwindow.htm

var dragapproved=false
var minrestore=0
var initwidth,initheight
var isie5=document.all&&document.getElementById
var isns6=document.getElementById&&!document.all

function iecompattest(){
return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function loadadwindow(url,width,height){
if (!isie5&&!isns6)
window.open(url,"","width=width,height=height,scrollbars=0")
else{
document.getElementById("adwindow").style.display=''
document.getElementById("adwindow").style.width=initwidth=width+"px"
document.getElementById("adwindow").style.height=initheight=height+"px"
document.getElementById("adwindow").style.left="200px"
document.getElementById("adwindow").style.top=isns6? window.pageYOffset*1+50+"px" : iecompattest().scrollTop*1+50+"px"
document.getElementById("cframe").src=url
}
}

function closeit(){
document.getElementById("adwindow").style.display="none"
}
