<?
class Content
{ 
  // class variables
  var $pcontent;
  var $res;

  // Constructor (percent = size of menu in %)
  function Content() 
    {
      $this->res = "";
      $this->pcontent = "";
    }

  // Add a new text
  function addText($text)
    {
      $this->pcontent .= $text;
    }

  // Compute res
  function getResult()
    {
      $this->res = "<div class=\"content\">\n" .
	$this->pcontent .
	"</div>";
    }
}
?>
