function FocusCol(obj)
{
  if (document.getElementById || document.all)
  {
  obj.style.color="#000000";
  obj.style.backgroundColor="#fff2e5";
  obj.style.fontWeight="normal";
  }
}

function BlurCol(obj)
{
  if (document.getElementById || document.all)
  {
  obj.style.color="#000000";
  obj.style.backgroundColor="#d5ff9e";
  obj.style.fontWeight="normal";
  }
}


