<!---
function HighLight(thisID,background){
	document.getElementById(thisID).style.borderLeftColor='White';
//	document.getElementById(thisID).style.borderTopColor='White';
//	document.getElementById(thisID).style.borderRightColor='White';
//	document.getElementById(thisID).style.borderBottomColor='White';
//	document.getElementById(thisID).style.background='#6666a3';
}

function LowLight(thisID,background) {
	document.getElementById(thisID).style.borderLeftColor='transparent';
//	document.getElementById(thisID).style.borderTopColor='#000066';
//	document.getElementById(thisID).style.borderRightColor='#000066';
//	document.getElementById(thisID).style.borderBottomColor='#000066';
//	document.getElementById(thisID).style.background='#000066';
}
//--->