name = $name;
		$this->value = $value;
	}
	
	function setMaxSize($value)	{ $this->mMaxSize = $value;	}
	function getMaxSize()	{ return $this->mMaxSize; }
	
	function getHtml() {
            if ($this->id=="") $this->id = $this->name;
	    
		$html = "\n\tmMaxSize."\"/>";
		$html .= "\n\tname\" id=\"$this->id\"";
		
		$html .= " type=\"file\"";
		$html .= ">";
                return $html;
	}
}