
function popup(ort, x, y) {
	win = window.open(ort, "Fenster", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + x + ",height=" + y);
	win.focus();
}
function popupNoScroll(ort, x, y) {
	win = window.open(ort, "Fenster", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=" + x + ",height=" + y);
	win.focus();
}
function nwr(x,w,h,t,l,n){
    if (h == "") h = 100;
    if (w == "") w = 100;
    if (t == "") t = 10;
    if (l == "") l = 10;
    if (n == "") n = "login";
    var xx = "top="+t+",left="+l+",width="+w+ ",height="+h+", directories=0, status=1, scrollbars=1, resizable=1, toolbar=0,menubar=0";
    msgWindow=window.open(x,n,xx);
    msgWindow.focus();
}
function gskPopup(ort, x, y) {
	win = window.open(ort, "Fenster", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + x + ",height=" + y);
	win.focus();
}
function gskPopupLd(ort) {
	y = (screen.height)-80;
	win = window.open(ort, "Fenster", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top=0,left=0,width=820,height=" + y);
	win.focus();
}

