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 jumpto(url){
//document.all.dwindow.allowTransparency = true;

width=document.body.offsetWidth-21+"px";
height=document.body.offsetHeight-139+"px";
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
document.getElementById("dwindow").style.height=initialheight=height
document.getElementById("dwindow").style.left=ns6? window.pageXOffset+5+"px" : iecompattest().scrollLeft+"px"
document.getElementById("dwindow").style.top=ns6? window.pageYOffset*1+134+"px" : iecompattest().scrollTop*1+134+"px"
document.getElementById("cframe").src=url
}
}
