//--------------WerteFenster--------------------------------------

//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 selectdragapproved=false
var selectminrestore=0
var selectinitialwidth,selectinitialheight
var ie5=document.all&&document.getElementById
var ns6=document.getElementById&&!document.all

function selectdrag_drop(e){
if (ie5&&selectdragapproved&&event.button==1){
document.getElementById("selectwindow").style.left=tempx+event.clientX-offsetx
document.getElementById("selectwindow").style.top=tempy+event.clientY-offsety
}
else if (ns6&&selectdragapproved){
document.getElementById("selectwindow").style.left=tempx+e.clientX-offsetx
document.getElementById("selectwindow").style.top=tempy+e.clientY-offsety
}
}

function selectinitializedrag(e){
offsetx=ie5? event.clientX : e.clientX
offsety=ie5? event.clientY : e.clientY
if (ie5)
document.getElementById("selectsaver").style.display=''

tempx=parseInt(document.getElementById("selectwindow").style.left)
tempy=parseInt(document.getElementById("selectwindow").style.top)

selectdragapproved=true
document.onmousemove=selectdrag_drop
}

function selectloadwindow(url,width,height){
if (!ie5&&!ns6){
window.open(url,"","width=width,height=height,scrollbars=1")
}else{

document.getElementById("selectwindow").style.display=''
document.getElementById("selectwindow").style.width=selectinitialwidth=width
document.getElementById("selectwindow").style.height=selectinitialheight=height
document.getElementById("selectwindow").style.left=30
document.getElementById("selectwindow").style.top=ns6? window.pageYOffset*1+30 : document.body.scrollTop*1+30
document.getElementById("selectframe").src=url
}
}

function selectmaximize(){
if (selectminrestore==0){
selectminrestore=1 //maximize window
document.getElementById("selectmaxname").setAttribute("src","rn/opencms/system/modules/com.softm.opencms.modules.portal/images/restore.gif")
document.getElementById("selectwindow").style.width=ns6? window.innerWidth-20 : document.body.clientWidth
document.getElementById("selectwindow").style.height=ns6? window.innerHeight-20 : document.body.clientHeight
}
else{
selectminrestore=0 //restore window
document.getElementById("selectmaxname").setAttribute("src","rn/opencms/system/modules/com.softm.opencms.modules.portal/images/max.gif")
document.getElementById("selectwindow").style.width=selectinitialwidth
document.getElementById("selectwindow").style.height=selectinitialheight
}
document.getElementById("selectwindow").style.left=ns6? window.pageXOffset : document.body.scrollLeft
document.getElementById("selectwindow").style.top=ns6? window.pageYOffset : document.body.scrollTop
}

function selectcloseit(){
document.getElementById("selectwindow").style.display="none"
}

if (ie5||ns6)
document.onmouseup=new Function("selectdragapproved=false;document.onmousemove=null;document.getElementById('selectsaver').style.display='none'")

