class = 'UploadFile';
    $this->name = $name;
  }
  function setMaxSize($value) { $this->maxSize = $value; }
  function getHtml() {
    if ($this->id == '') $this->id = $this->name;
    $html = "\n\tmaxSize\">";
    $html .= "\n\tid\" name=\"$this->name\">";
    return $html;
  }
}