Here is a demonstration of the redirection function:
DEMO: redirection ( follow link in IE, in NE & with Javascript off)
<html>
<head> <title> Browser Redirect</title>
<SCRIPT language="JavaScript">
<!--
var browserName = navigator.appName;
browserVer = parseInt ( navigator.appVersion );
name = "0";
if ( browserName == "Netscape" ) name="1";
if ( browserName != "Netscape" ) name="2";
if (name == "1") location.replace("NEhome.html");
else
if (name == "2")
{
location.replace("IEhome.html");
}
// --></SCRIPT>
</head>
<body>
This is the index.html page
</body>
</html>