// used in table output 

function rowOn(row){
	row.style.backgroundColor='#D50A27';
	row.setAttribute("class", "table_row_on");
	row.setAttribute("className", "table_row_on");
	//row.style.className='table_row_on';
	//row.style.color='#FFFFFF';
}

function rowOff(row, bgcolor){
	row.style.backgroundColor=bgcolor;
	//row.style.className='table_row_off';
	row.setAttribute("class", "table_row_off");
	row.setAttribute("className", "table_row_off");
	//row.style.color='#333333';
}
