// <!--
var agt = navigator.userAgent.toLowerCase();
var is_mac = (agt.indexOf("mac") != -1);
var is_msie = (agt.indexOf("msie") != -1);
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var is_os9 = (agt.indexOf("mac_ppc") != -1);

 // AOL CHECKS

var is_aol = (agt.indexOf("aol") != -1);
var is_aolandie3 = (this.aol && this.ie3);
var is_aolandie4 = (this.aol && this.ie4);
var is_aolandie5 = (this.aol && this.ie5);
var is_aol3 = (agt.indexOf("aol 3") != -1);
var is_aol4 = (agt.indexOf("aol 4") != -1);
var is_aol5 = (agt.indexOf("aol 5") != -1);
var is_aol6 = (agt.indexOf("aol 6") != -1);
var is_aol7 = (agt.indexOf("aol 7") != -1);
var is_aol8 = (agt.indexOf("aol 8") != -1);

if ((bName == "Netscape" && bVer == 4) || (is_mac && is_msie) || (is_aol))
	top.location.replace("unsupported.html");
	
if (navigator.userAgent.indexOf('Netscape6') != -1)     
{
  top.location.replace("unsupported.html");
}
// -->