function highlight()
{
 var oObj = event.srcElement;
 oObj.style.color = '#ffffff' ;
}

function lolight()
{
 var oObj = event.srcElement;
  oObj.style.color = '#000000' ;
  oObj.style.textDecoration = "none" ;
}

function HelpPop(strURL)
{
   window.open(strURL,'', 'width=400px,height=350px,scrollbars=yes');
   return false;
}

function MemberPop(strURL)
{
   window.open(strURL,'', 'width=400px,height=250px,scrollbars=yes');
   return false;
}

var changed = 0;
var old_colour = "SFF";

function cell_hover(cell, colour) 
{
   //mouse on
   if(changed == 0) 
   {
      changed = 1;
      old_colour = cell.style.backgroundColor;
      cell.style.backgroundColor=colour;

   //mouse off
   } 
   else 
   {
      if(!colour) 
      {
         changed = 0;	
         cell.style.backgroundColor=old_colour;
      } 
      else 
      {
         cell.style.backgroundColor=colour;
      }
   }
}