home *** CD-ROM | disk | FTP | other *** search
- // There are 3 browserswitch js-files, which need to be kept consistent:
- // /sample/library/script/browserSwitch.js
- // /sample/library/script/browserSwitchPrePages.js
- // /sample/library/script/browserSwitchStartPage.js
- //
- // Differences:
- // 1st) They differ in the redirect-paths: only "browserSwitchStartPage.js" needs to be modified
- // 2nd) "browserSwitchStartPage.js" has no function browserdetect()
-
-
- // Browserswitch: IE < 5 / NS < 6
- if (!document.getElementById && !document.all)
- {
- window.location="services_2003/browser.htm";
- }
-
-
- // Useage of IE4 (compatible installation):
- if ( navigator.appVersion.indexOf('MSIE 4')!=-1 && navigator.appVersion.indexOf('compatible;')!=-1 )
- {
- window.location="services_2003/browser.htm";
- }
-
- //Schlie▀t Opera aus
- if (navigator.appName == "Opera")
- {
- window.location="services_2003/browser.htm";
- }
-
-
-
-
-