WWW = "http://www.ranchtriangle.org/"

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

function setBGColor(id,nestref,color) {
        if (ns4) {
                var lyr = (nestref)? eval('document.'+nestref+'.document.'+id):document.layers[id]
                lyr.document.bgColor = color
        }
        else if (ie4) {
                document.all[id].style.backgroundColor = color
        }
}

function change(which){
	if(event.type == "mouseover")
		which.src = which.src.replace(/Off.gif/g,"On.gif");		
	else
		which.src = which.src.replace(/On.gif/g,"Off.gif");
}


function OpenBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function jumpurl(form) {
  //location = form.URL.options[form.URL.selectedIndex].value;
  document.forms[0].submit()
  return true;
}

function selectChange(which) {
	if (which == null) {
		alert("Please Select Something!")
	}
	else {
		location = which.options[which.selectedIndex].value;
		return true;
	}
}

