<?
// variable that says: we are on mobile now!
$MOBILE = true;
// templates are on other directory
define('TMPLPATH',getcwd().'/templates_mobile/');
// define styles
define('SMALL_STYLE','font-size: smaller;');
define('BIG_STYLE','font-size: larger;');
define('BOLD_STYLE','font-weight: bold;');
define('RED_STYLE','color: #FF2010;');
define('MONO_STYLE','font-family: monospace,courier new;');
define('WARNING_STYLE','font-size: smaller;background-color: yellow;');
define('LOGIN_STYLE','margin: 0px;padding: 0px;background-color: #e8eef7;');
define('HEADER_STYLE','background-color: #e8eef7;');
define('TH_STYLE',BOLD_STYLE.'vertical-align: top;');
define('NEW_STYLE',BOLD_STYLE.'background-color: #ffffbb;');
define('LINE_WIDTH',50);
define('TEXT_MAX_SIZE',500);
include('index.php');
?>