<!---
function HighLight(thisID,background){
	document.getElementById(thisID).style.borderLeftColor='#666600';
	document.getElementById(thisID).style.borderTopColor='#666600';
	document.getElementById(thisID).style.borderRightColor='#fafae8';
	document.getElementById(thisID).style.borderBottomColor='#fafae8';
	document.getElementById(thisID).style.background='#cccc00';
}

function LowLight(thisID,background) {
	document.getElementById(thisID).style.borderLeftColor='cccc00';
	document.getElementById(thisID).style.borderTopColor='cccc00';
	document.getElementById(thisID).style.borderRightColor='cccc00';
	document.getElementById(thisID).style.borderBottomColor='cccc00';
	document.getElementById(thisID).style.background='#cccc00';
}
//--->