function barover(boxid) {
	document.getElementById(boxid).style.backgroundColor = "#FF9933";
	document.getElementById(boxid).style.borderLeftColor = "#FFFFFF";
	document.getElementById(boxid).style.borderRightColor = "#FFFFFF";
}
function barout(boxid) {
	document.getElementById(boxid).style.backgroundColor = "#339933";
	document.getElementById(boxid).style.borderLeftColor = "#339933";
	document.getElementById(boxid).style.borderRightColor = "#339933";
}
