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