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(url,width,height){
if (!ie5&&!ns6)
window.open(url,"","width=width,height=height,scrollbars=0")
else{
document.getElementById("dwindow").style.display=''
document.getElementById("dwindow").style.width=initialwidth=width+"px"
document.getElementById("dwindow").style.height=initialheight=height+"px"
document.getElementById("dwindow").style.left=ns6? screen.width/2-(width/2)+"px" : iecompattest().scrollLeft+screen.width/2-(width/2)+"px"
// document.getElementById("dwindow").style.top=ns6? screen.height/2-(height/2)+"px" : iecompattest().scrollTop+screen.height/2-(height/2)+"px"
document.getElementById("dwindow").style.top="75px"

document.getElementById("cframe").src=url
}
}

function closeit(){
document.getElementById("dwindow").style.display="none"
document.getElementById("cframe").src=""
}

