function checkbox(id,name) {
   if (document.getElementById)
          {
                 document.getElementById(id).className = name;
        }
   else {}
}


function FocusCol(obj)
      {
        if (document.getElementById || document.all)
        {
        obj.style.color="#000000";
                obj.style.backgroundColor="#9bceea";
        }
      }


      function BlurCol(obj)
      {
        if (document.getElementById || document.all)
        {
        obj.style.color="#00427B";
        obj.style.backgroundColor="#EFF5F9";
        }
      }