function Inhalt(url) {
    hoehe=screen.height-130;
    breite = 680;
    sx=20;
    sy=15;
    var Fenster = window.open(url, "Inhalt", "width="+breite+", height="+hoehe+", scrollbars=yes, resizable=yes, dependent=yes, copyhistory=no, screenx="+sx+",screeny="+sy+", top="+sy+", left="+sx+"");
    Fenster.focus();
    return false;
}

function Popup(url) {
    var Fenster = window.open(url, "Popup", "width=650, height=800, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, top=50, left=200");
    Fenster.focus(); 
}

function link(URL) {
    window.opener.location.href=URL;   
    return false;
}

function Register(url) {
    var Fenster = window.open(url, "Register", "width=620,height=675, resizable=yes, menubar=no, status=no, location=no, scrollbars=yes, top=100, left=200, screenX=200, screenY=150");
    Fenster.focus(); 
    return false; 
}

function schliessen() {
	window.setTimeout('window.close()',1000);
	window.opener.location.reload();
	
}

function anmelden_pauschal() {
	window.location.reload();
}

 function setfocus() {
 document.LoginForm.username.focus()
 }

