<!--
<!-- Changes the background colour of a cell (generic routine)
<!-- 
function chgColour(celno,newColour)
{
 var chgcell
 if (document.layers) 
   { chgcell = "document.layers" + celno + ".bgColor='" + newColour + "'"; }
 else if (document.getElementById)
   { chgcell = "document.getElementById('"+ celno + "').bgColor='" + newColour + "'"; }
 else
   { chgcell = "document.all('"+ celno + "').bgColor='" + newColour + "'"; }
 eval(chgcell);
}
//-->

