<!---
function HighLight(thisID,background){
	document.getElementById(thisID).style.borderLeftColor='#FFFFFF';
	document.getElementById(thisID).style.borderTopColor='#FFFFFF';
	document.getElementById(thisID).style.borderRightColor='#006699';
	document.getElementById(thisID).style.borderBottomColor='#006699';
	document.getElementById(thisID).style.background='#cce0eb';
}

function LowLight(thisID,background) {
	document.getElementById(thisID).style.borderLeftColor='#ffcc33';
	document.getElementById(thisID).style.borderTopColor='#ffcc33';
	document.getElementById(thisID).style.borderRightColor='#ffcc33';
	document.getElementById(thisID).style.borderBottomColor='#ffcc33';
	document.getElementById(thisID).style.background='White';
}
//--->
