			var osType = navigator.userAgent.indexOf("Mac") == -1 ? "pc" : "mac";
			var brType;
			if (document.layers) brType = "NS4";
			if (document.all) brType = "IE4";
			if (document.getElementById)
				if (document.all) brType = "IE5";
				else brType = "NS6";
			if (navigator.userAgent.indexOf("WebTV") != -1) brType = "WT";
			var jsType = brType;
			if (brType == "NS6") jsType = "DOM";
			if (brType == "IE4") jsType = "IE";
			if (brType == "IE5")
				if (osType != "mac" && (document.doctype || (document.compatMode && document.compatMode == "CSS1Compat"))) jsType = "DOM";
				else jsType = "IE";
			if (brType == "WT" || brType == "IE4") jsType = "Min";
			var cssType = jsType.toLowerCase() + "_" + osType.toLowerCase();
			document.write("<link rel=\"stylesheet\" href=\"/css/" + cssType + ".css\"/>\n");
			document.write("<s"+"cript language=\"JavaScript1.2\" src=\"/js/nav/nav" + jsType + ".js\"></s"+"cript>\n");

function goTo(url, winName, features)
{
	var	tempVar = null;
	var feats = features ? features : null;
	url = url.replace(/%(25)?__/g, "%");
	if (feats == null)
		tempVar = window.open(url, winName ? winName : "_top");
	else
		tempVar = window.open(url, winName ? winName : "_top", feats);
	tempVar.focus();
}
 