function exit() {//wird das dokument in einem Fenster geöffnet so schließt es automatisch, andernfalls wird einfach zur //vorherigen Seite gesprungen if (parent.frames.length==0) { self.close(0); }else{ history.back(0); } } //URLöffnen function URLOpen(URL,TARGET,OPTIONEN){ if (TARGET=="") TARGET = "_self"; var strQuery = window.location.search; //alert(strQuery); var pos1 = strQuery.indexOf("&"); var len = strQuery.length; var strParam = strQuery.substring(pos1,len); //alert(strParam); F1 = window.open(URL + strParam,TARGET,OPTIONEN); } function logout(name,value,redirect) { document.cookie=name+"="+value+"; expires=Saturday, 30-Sep-1969 08:00:00 GMT ; path=/"; location.href = redirect; }