/*
function popup(addr)
{
    window.open(addr, "popup", "width=504,height=644,toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no,location=no");
}
*/

function popup(addr) {
    //window.open(addr, "popup", "width=400,height=450,toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no,location=no");
    window.open(addr, "popup", "width=400,height=450,toolbar=no,status=no,scrollbars=no,resizable=yes,menubar=no,location=no");
}

/*
function neuesFenster(addr)
{
    //window.open(addr, "popup", "width=504,height=644,toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no,location=no");
    //neuesScrollFenster(addr);
    window.open(addr, "popup", "width=504,height=644,toolbar=no,status=no,scrollbars=no,resizable=yes,menubar=no,location=no");
    return false;
}
*/

function neuesScrollFenster(addr){
    window.open(addr, "popup", "width=504,height=644,toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no");
}

function flashFenster(addr,width,height) {
	window.open(addr,"popup","height="+height+",width="+width+",toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,titlebar=no,");
}

function neuesEditFenster(addr) {
	var width = screen.width;
	var height = screen.height;
	window.open( addr, "popup", "width=" + width + ",height=" + height + ",toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no");
}

function neuesFenster(addr,width,height){
	window.open(addr,"popup","height="+height+",width="+width+",toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,titlebar=no");
	return false;
}

function neuesFensterScroll(addr,width,height){
	window.open(addr,"popup","height="+height+",width="+width+",toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,titlebar=no");
	return false;
}

var extWin;

function openWin(url,w,h){
   var x = (screen.width - w)/2;
   var y = (screen.height - h)/3;
   if(typeof(extWin)=="undefined" || extWin.closed==true){
       extWin = window.open(url,"external","width="+w+",height="+h+",left="+x+",top="+y+",toolbar=no,location=no,menubar=no,status=no,scrollbars=no,resizable=no");
       if(extWin.opener == null) extWin.opener = window;
       extWin.w = w;
       extWin.h = h;
   } else {
       if(w != extWin.w || h != extWin.h){
           extWin.moveTo(x,y);
           extWin.w = w;
           extWin.h = h;
       }
       if(extWin.location != url) extWin.location = url;
       extWin.focus();
   }
}

/*
function neuesScrollFenster(addr,width,height)
{
	window.open(addr,"popup","height="+height+",width="+width+",toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,titlebar=no,");
}
*/