var browser = (navigator.appName=="Microsoft Internet Explorer")?"IE":"DOM";
if (browser == "DOM"){
if(navigator.appName=="Netscape" && parseFloat(navigator.appVersion)<5){
document.write('');
}
}
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("\n");
document.write("\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();
}