/**
  * Display an upload form to add new pictures to an album
  *
  * @access	private
  */
 private function display_upload()
 {
     Html::form('o', 'post', 'index.php?ns=media&ctl=albums&action=edit&id=' . $this->_albums[0]->_id, true);
     Html::ma_upload($this->_albums[0]->_name, $this->_albums[0]->_id);
     Html::form('c');
 }