<?php
/*
*/

//$owner = $_REQUEST['o'];

error_reporting(E_ALL);
#ini_set('display_errors', '1');
    define('TESZT', true);
	include("inc/functions.inc");
	include("inc/licence.key");
	include("inc/sessions.inc");
	include("inc/config.inc");
	include("inc/config_init.inc");	
	include("inc/caching.inc");
	include("inc/wysiwyg.inc");
	include(BASE_PATH.INC_PATH.INIT_INC);
	include(BASE_PATH.INC_PATH.DESIGN_INC);
	include(BASE_PATH.INC_PATH."html_head.inc"); 

echo '<body >';
	
echo '<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000"></div>';
if ( ISMOBILE )
    echo '<TABLE id="frame" class="border" cellSpacing=0 cellPadding=0 align="center" border="1">';
else
    echo '<TABLE id="frame" class="border" cellSpacing=0 cellPadding=0 width="100%" style="font-size:12px;" align="center" border="1">';

?>
    <TBODY>
	<TR>
	    <TD>

<?php
	include(BASE_PATH.INC_PATH.CONTENT_INC);
?>
	    </TD>
	</TR>
    </TBODY>
</TABLE>
</body>
</html>
<?php
	include(BASE_PATH.INC_PATH.SHUTDOWN_INC);

?>