function rowOver(elem) {
	if (document.all){
		elem.style.backgroundColor='BDD6E7';
	}
	else {
		elem.style.backgroundColor='#BDD6E7';
	}

}

function rowOut(elem, type) {
	if (type == 'std')
		useColor = 'FFFFFF';
	else
		useColor = 'ECECEC';
	if (!document.all)
		useColor = '#' + useColor ;
	
	elem.style.backgroundColor= useColor;	

}