Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
45 lines (29 sloc)
1.09 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> | |
| <meta name="ProgId" content="FrontPage.Editor.Document"> | |
| <title>Browser keuze</title> | |
| </head> | |
| <script language="JavaScript"> | |
| //Script door Ramon van Bruggen | |
| //1999 No copyright rvbcrs@tebenet.nl | |
| function WHATISIT() | |
| { var browserName = navigator.appName; | |
| browserVer = parseInt ( navigator.appVersion ); | |
| name = "0"; | |
| if ( browserName == "Netscape" && browserVer >= 4 ) name="1"; | |
| if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) name="2"; | |
| if ( browserName == "Netscape" && browserVer < 4 ) name="1"; | |
| if ( browserName == "Microsoft Internet Explorer" && browserVer <4 )name="2"; | |
| if ( browserName != "Microsoft Internet Explorer" && browserName != "Netscape") name="1"; | |
| if (name == "1") | |
| location.href=("http://www.tebenet.nl/old/begin.htm"); | |
| else | |
| if (name == "2") | |
| location.href=("http://www.tebenet.nl/intro.htm"); | |
| } | |
| </script> | |
| <body onload="WHATISIT()"> | |
| </body> | |
| </html> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |