<!--
function setHomePage() {
    var agt=navigator.userAgent.toLowerCase();
    var is_major = parseInt(navigator.appVersion);
    var is_minor = parseFloat(navigator.appVersion);
    var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
                && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
    var is_nav4up = (is_nav && (is_major >= 4));
    var is_nav6up = (is_nav && (is_major >= 5));
    var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
    var is_ie3    = (is_ie && (is_major < 4));
    var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 5")==-1) );
    var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 5")==-1) && (agt.indexOf("msie 6")==-1));
    var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
    var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
    var is_win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
                    (agt.indexOf("windows 16-bit")!=-1));
    var is_mac    = (agt.indexOf("mac")!=-1);

	if (is_win && is_ie4) {self.location.href = "browsers/ie4.asp";}
	else if (is_mac && is_ie) {self.location.href = "browsers/macie.asp";}
	else if (is_win && is_ie5up) {
		oHomePage.style.behavior='url(#default#homepage)';
		oHomePage.setHomePage('http://www.wyoming.com/');
		//parent.close();
		//location.href = 'dsw-browser.html';
	}
	else if (is_win && is_nav6up) {self.location.href = "browsers/ns6.asp";}
        else if (is_win && is_nav4up) {self.location.href = "browsers/ns4.asp";}
        else if (is_mac && is_nav4up) {self.location.href = "browsers/macns.asp";}
	else {self.location.href = "browsers/other.asp";}
	}

//-->


<!--
function setFocus() {
	document.username.name.focus();
}
//-->

<!--
function clickmail(domain,mailto) {
	var url = "mailto:" + mailto + "@" + domain;
	self.location.href = url;
	return;
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

<!--
var openWinPos = null;
var chasm = screen.availWidth;
var mount = screen.availHeight;
var w = 0;
var h = 0;
function openWin(page, name, w,h) {
	{ if (!openWinPos || openWinPos.closed)
       		{openWinPos = window.open(page,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
 	} else {
	openWinPos.focus()
		}
	}
}
// -->


<!----hide---

var openWinPos = null;
var chasm = screen.availWidth;
var mount = screen.availHeight;
var w = 0;
var h = 0;
function newWin(page, name, w,h) {
	{ if (!openWinPos || openWinPos.closed)
       		{openWinPos = window.open(page,name,'status=0,scrollbars=0,resizable=1,toolbar=0, location=0,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
 	} else {
	openWinPos.focus()
		}
	}
}
//--------->

