/* Automatically change table row colour as a cursor moves over it */
function ChangeColor(tableRow, highLight)	{
  var trnum = tableRow.rowIndex ;
  window.document.rows.selectedrow.value = trnum - 1 ;
  if (highLight)      {
     tableRow.style.backgroundColor = '#dcfac9';
	   eval( "window.document.rows.row" + (trnum -1) + ".checked = true") ;
	 }
  else      {
     tableRow.style.backgroundColor = 'white';
	   eval( "window.document.rows.row" + (trnum -1) + ".checked = false") ;
  }
}