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