function rollOverRow(o,s) {
	if (s) { //onmouseover
		o.cells[0].style.backgroundColor = "#F7F8FC";
		o.cells[1].style.backgroundColor = "#F7F8FC";
	
	} else { //onmouseout
		o.cells[0].style.backgroundColor = "#ffffff";
		o.cells[1].style.backgroundColor = "#ffffff";
	}
}