﻿function fTD(id, textid)
{
  if(document.getElementById)
  {
    if(n=document.getElementById(id))
    {
      n.className="formTdFocus";
    }
  }
  if(document.getElementById)
  {
    if(m=document.getElementById(textid))
    {
      m.className="formTdFocusTextBox";
    }
  }
}

function bTD(id, textid)
{
  if(document.getElementById)
  {
    if(n=document.getElementById(id))
    {
      n.className="formTd";
    }
  }
  if(document.getElementById)
  {
    if(m=document.getElementById(textid))
    {
      m.className="formTdTextBox";
    }
  }
}

