<!--

	// --------------------------------------------------------------
	// Sniff the browser
	// --------------------------------------------------------------

	sAgent = navigator.userAgent;
	bIsMac = sAgent.indexOf("Mac") > -1;
	bIsIE = sAgent.indexOf("MSIE") > -1;
	bIsIE3 = sAgent.indexOf("IE 3") > -1;
	bIsIE4 = sAgent.indexOf("IE 4") > -1;
	bIsIE5 = sAgent.indexOf("IE 5")  > -1;
	bIsNav = sAgent.indexOf("Mozilla") > -1 && !bIsIE;
	bDoesAll = (bIsIE4 || bIsIE5) && !bIsMac;

	// --------------------------------------------------------------
	// Display Error Message in Alert Box for old Browsers
	// --------------------------------------------------------------
	
	//if (navigator.appVersion.substring(0,1) < 4){
	//	if (bIsIE){
	//		alert("You are using an older version of Internet Explorer.  This site works best with Version 4.0 or higher.  Your current browser may not display the following pages correctly.");
	//	}
	//	else if (bIsNav){
	//		alert("You are using an older version of Netscape Navigator.  This site works best with Version 4.0 or higher.  Your current browser may not display the following pages correctly.");
	//	}
	//}

	// --------------------------------------------------------------
	// Link to apropriate stylesheet
	// --------------------------------------------------------------

	var sCSS;
	if (bIsNav) sCSS = "/css/netscape.css";
	else sCSS = "/css/iexplorer.css";
	document.write("<LINK REL='stylesheet' TYPE='text/css' HREF='" + sCSS + "'>");

//-->