<!--
		
function rowOver(){
	lmnt = window.event.srcElement;
	if (lmnt.tagName.toUpperCase() == 'TABLE')
		return;
	while (lmnt.tagName.toUpperCase() !='TR') 
		lmnt = lmnt.parentElement;
	lmnt.style.background = "#A9171C";
}

function rowOut(){
	lmnt = window.event.srcElement;
	if (lmnt.tagName.toUpperCase() == 'TABLE')
		return;
	while (lmnt.tagName.toUpperCase() !='TR') 
		lmnt = lmnt.parentElement;
	lmnt.style.background ="#999999";
}

function rowOverTD(){
	lmnt = window.event.srcElement;
	if (lmnt.tagName.toUpperCase() == 'TABLE')
		return;
	while (lmnt.tagName.toUpperCase() !='TD') 
		lmnt = lmnt.parentElement;
	lmnt.style.background = "ba131a";
}

function rowOutTD(){
	lmnt = window.event.srcElement;
	if (lmnt.tagName.toUpperCase() == 'TABLE')
		return;
	while (lmnt.tagName.toUpperCase() !='TD') 
		lmnt = lmnt.parentElement;
	lmnt.style.background ="#999999";
}

//-->
