function toggleColor(objElement)
{
  if (objElement.className=='frmElementNorm')
  {
    objElement.className='frmElementFocus';
  }
  else
  {
    objElement.className='frmElementNorm';
  }
}
