Recognizes what browser you are using and jumps to that browser's correct page.
</ccDescription>
<ccInstructions>
This script is your opening web page. Then depending on which version of Netscape or IE the visitor is using, the page will then "jump" to it's respective page.
</ccInstructions>
<ccHeadContent>
</ccHeadContent>
<ccBodyContent>
<SCRIPT LANGUAGE="JavaScript">
<!--
manu=navigator.appName;
vers=navigator.appVersion;
//MSIE 4.0+ BROWSERS WILL JUMP TO THIS LINK
if (manu.indexOf("Microsoft")>=0 && vers.indexOf("4")>=0)
{location.href="ie4.html";}
//MSIE 3.0 BROWSERS WILL JUMP TO THIS LINK
else if (manu.indexOf("Microsoft")>=0 && vers.indexOf("3")>=0)
{location.href="ie3.html";}
//Netscape 4.0+ BROWSERS WILL JUMP TO THIS LINK
else if (manu.indexOf("Netscape")>=0 && vers.indexOf("4")>=0)
{location.href="netscape4.html";}
//Netscape 3.0 BROWSERS WILL JUMP TO THIS LINK
else if (manu.indexOf("Netscape")>=0 && vers.indexOf("3")>=0)