<?php

include_once(dirname(__FILE__).'/Module.php');

class Output extends Module
{
  function SystemMessage($Text)
  {
    return('<div style="padding: 5px; border-color: red; border-style: solid; border-width: 1px;"><strong>Systémová zpráva:</strong> '.$Text.'</div>');
  }

  function Show($Text)
  {
    echo('<?xml version="1.0" encoding="UTF-8"?>'.
    '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'.
    '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs">'.
    '<head>'.
    //'<title></title>'.
    '<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/>'.
    $Text.'</body></html>');
  }
}
