//hilight row
function highlightRow(rwElem, turn_on)
{
	rwElem.style.backgroundColor = (turn_on) ? "#183A70" : "#4B8BAE";
}

function highlightRowLevel1(rwElem, turn_on)
{
	rwElem.style.backgroundColor = (turn_on) ? "#183A70" : "#0099FF";
}