function changeThatBox(id, aid, toggleon, defaultColor){

	//var defaultColor = "#ffcc00";
	var mouseOverColor = "#ff3300";
	var linkDefaultColor = "#000099";
	var linkMouseOverColor = "#ffffff";

	var nn4 = (document.layers) ? true : false 
	var ie = (document.all) ? true : false 
	var dom = (document.getElementById && !document.all) ? true : false

	if (ie) {
		tableElement = document.all[id].style;
		linkElement = document.all[aid].style;
	} else if(dom) {
		tableElement = document.getElementById(id).style;
		linkElement = document.getElementById(aid).style;
	} else if(nn4) {
		tableElement =  document.layers[id];
		linkElement =  document.layers[aid];
	}

	if(toggleon){
		if (ie || dom) {
			tableElement.backgroundColor = mouseOverColor;
			linkElement.color = linkMouseOverColor;
		} else if(nn4) {
			tableElement.bgColor = mouseOverColor;
			linkElement.color = linkMouseOverColor;
		}
	}
	else{
		if (ie || dom) {
			tableElement.backgroundColor = defaultColor;
			linkElement.color = linkDefaultColor;
		} else if(nn4) {
			tableElement.bgColor = defaultColor;
			linkElement.color = linkDefaultColor;
		}
	}
}
        
function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  	if (restore) selObj.selectedIndex=0;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features).focus();
}
