// JavaScript Document

function turnOnLine (tableRowObj) {
   tableRowObj.style.backgroundColor='#000066'; 
   tableRowObj.style.color='#FFFFFF';
}

function turnOffLine (tableRowObj) {
   tableRowObj.style.backgroundColor='#FFFFFF'; 
   tableRowObj.style.color='#000000';
}
