
function blastThis(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function jumpTo(URL_List){
   var text = URL_List.options[URL_List.selectedIndex].text;
	if(text == "WildBlue Customer?")
	{
		return false;
	}
   var URL = URL_List.options[URL_List.selectedIndex].value;
   window.location.href = URL;
}

browserName = navigator.appName;
	browserVersion = parseFloat(navigator.appVersion);

	if (browserName == "Netscape" && browserVersion >= 3.0){
		roll = 'true';
	}
	else if (browserName == "Microsoft Internet Explorer" && browserVersion >= 3.0){
		roll = 'true';
	}
	else{
		roll = 'false';
	}

	if (roll == 'true'){
        home_on=new Image;home_on.src="/images/nav/home_on.gif";
        home_off=new Image;home_off.src="/images/nav/home_off.gif";
        contact_on=new Image;contact_on.src="/images/nav/contact_on.gif";
        contact_off=new Image;contact_off.src="/images/nav/contact_off.gif";
        about_on=new Image;about_on.src="/images/nav/about_on.gif";
        about_off=new Image;about_off.src="/images/nav/about_off.gif";
        for_home_on=new Image;for_home_on.src="/images/nav/for_home_on.gif";
        for_home_off=new Image;for_home_off.src="/images/nav/for_home_off.gif";
        for_office_on=new Image;for_office_on.src="/images/nav/for_office_on.gif";
        for_office_off=new Image;for_office_off.src="/images/nav/for_office_off.gif";
        get_on=new Image;get_on.src="/images/nav/get_on.gif";
        get_off=new Image;get_off.src="/images/nav/get_off.gif";
	}

	function hiLite(oldPic,newPic){
		if (roll == 'true'){
			document.images[oldPic].src = eval(newPic + ".src")
		}
	}
