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

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

