/////////////////////////////////////////////////////////////// // // BrowserCompatible // // Kontrolle des Browsers auf Clientseite // // @return true=InternetExplorer und Kompatible, false=Other // //////////////////////////////////////////////////////////////// function BrowserCompatible() { var IE4 = (document.all && !document.getElementById) ? true : false; var IE5 = (document.all && document.getElementById) ? true : false; if ( IE4 == true || IE5 == true ) return true; else return false; } /////////////////////////////////////////////////////////////// // // wopen // // Öffnet ein neues Fenster // // Parameter : // // wsite : Adresse der Seite // wheight : Höhe des Fenster // wwidth : Breite des Fensters // //////////////////////////////////////////////////////////////// function wopen ( wsite, wheight, wwidth ) { if (wsite.substr(0,16)=="/system/browser/") { window.open(wsite,'popup','width=wwidth,height=wheight,scrollbars=yes,resizable=yes,top=50,left=50,status=no,toolbar=no,location=no,menubar=no'); } else window.open(wsite,'popup','width='+wwidth+',height='+wheight+',scrollbars=yes,resizable=yes,top=50,left=50,status=no,toolbar=no,location=no,menubar=no'); } /////////////////////////////////////////////////////////////// // // winlineopen // // Öffnet ein Inlinefenster // // Parameter : // // wsite : Adresse der Seite // wheight : Höhe des Fenster // wwidth : Breite des Fensters // //////////////////////////////////////////////////////////////// function winlineopen ( wsite, wheight, wwidth, restabdunkeln, weicherrahmen, schliessentext ) { if (!schliessentext) var schliessentext = "X"; //HTML Datei als INLINE Popup anzeigen var content = '
'+schliessentext+'