function mypopup(destination) { this.name = "principale"; window.open(destination,"mypopup","width=660,height=400,resizable=yes,scrollbars=yes"); return; } function mypopupGT(destination) { this.name = "principale"; window.open(destination,"mypopup","width=780,height=540,resizable=yes,scrollbars=no"); return; } function oeffnefenster (url) { this.name = "principale"; var fenster=window.open(url, "fenster1", "width=600,height=430,resizable=yes,menubar=yes,location=no,hotkeys=yes,toolbar=yes"); fenster.focus(); } function popup (url, wname, w, h, rez) { var _client = 'old'; var browser=navigator.appName; var ver=parseInt(navigator.appVersion); if (ver >= 3) _client="ok"; if (browser == "Microsoft Internet Explorer") _client='ie'; urllength = url.length; winame = wname; title = winame winparams = 'toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=' + rez + ',scrollbars=' + rez + ',width=' + w + ',height=' + h ; if (_client == "ok") { winame = open(url, winame, winparams); history.go(url); document.close() winame.focus(); } if (_client == "ie") { baseurl = location.href; winame = open(url,winame,winparams); document.close(); if (ver > 3) winame.focus(); } if (_client == "old") { baseurl = location.href; winame = open(url,winame,winparams); document.close(); } } function help () { var x = self.location.href; var home = '/juriforum/home.nsf/info/'; if (x.indexOf ('/sr.nsf/')!=-1) { mypopup (home + 'lib_result?OpenDocument') //Hilfe zur Ergebnisliste } else if (x.indexOf ('/url/')!=-1) { mypopup (home + 'lib_detail1?OpenDocument') //Hilfe zur Dokumentansicht } else if (x.indexOf ('Show')!=-1) { mypopup (home + 'simple_search1?OpenDocument') //Hilfe zur einfachen Suche } else if (x.indexOf ('Search')!=-1) { mypopup (home + 'extended_search1?OpenDocument') //Hilfe zur erweiterten Suche } else { mypopup (home + 'hilfe_uebersichtrb?OpenDocument') //Hilfe } }