<?php

chdir('..');
include('global.php');

class InstallPage extends Page
{
  var $Dependencies = array();
  var $FullTitle = '';
  var $ShortTitle = '';

  function Show()
  {
    $Output = 'll';
    return($Output);
  }
}

$System->AddModule(new InstallPage());
$System->Modules['InstallPage']->GetOutput();

?>