function empty_field(obj)
{
  if (obj.value == null)
    return (false) ;
  return (obj.value.length == 0) ;
}

