A website (www.canadasportswear.com) is using this script to ban all
Netscape and Mozilla branded browsers from their site, or rather the
webdesigner they hired to do their web design did so. I've managed to
get into pages beyond the frontpage, and for the most part Mozilla
handles it perfectly (there are a couple "IE Only" features, but nothing
integral to the functionality or appearance of the site) - but I can't
figure out how to get into the site through the front door using Moz,
changing the UA string doesn't seem to work - is there anything else
that might do the trick?
If anyone wants to pull an Evangelism trip, his phone number is on the
website.
</script>
<csbrowser href="netscape.html" ns="0,0,0,0,0" ie="0,0,1,1,1">
<script><!--
var skipPage = true; bAgent = window.navigator.userAgent; bAppName =
window.navigator.appName; bMozIdx = bAgent.indexOf("Mozilla/");
if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/4")
>= 0)) skipPage = false;
if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/5")
>= 0)) skipPage = false;
if ((bAppName.indexOf("Explorer") >= 0) && (bMozIdx >= 0) &&
(parseInt(bAgent.substring(bMozIdx+8, bMozIdx+10)) >= 6)) skipPage =
false;
if (skipPage) { location = /*URL*/'netscape.html'; }
//--></script>
Patrick