function FocusCol(obj)
{
  if (document.getElementById ||
    document.all)
  {
  obj.style.color="black";
  obj.style.backgroundColor="#FFFF00";
  }
}

function BlurCol(obj)
{
  if (document.getElementById ||
    document.all)
  {
  obj.style.color="black";
  obj.style.backgroundColor="White";
  }
}