// JavaScript Document
function chagebgcolor(obj){
	if (obj.className=='shaded_row')
		obj.style.backgroundColor='#e2ebe0';
	else
		obj.style.backgroundColor='#F7F7F7';
}

function restorebgcolor(obj){
	if (obj.className=='shaded_row')
		obj.style.backgroundColor='#E6F0E8';
	else
		obj.style.backgroundColor='#FFFFFF';
}
