2008-11-27 15:10:48 +03:00
|
|
|
<?php
|
|
|
|
$page = 'feat';
|
2008-12-02 00:55:24 +03:00
|
|
|
require_once('libs/common.php');
|
|
|
|
start_html_output();
|
2008-11-27 15:10:48 +03:00
|
|
|
require_once('inc/header.i');
|
|
|
|
require_once('inc/menu.i');
|
|
|
|
?>
|
|
|
|
|
2008-10-22 02:04:45 +04:00
|
|
|
<div id="container">
|
|
|
|
<div id="content">
|
2008-10-22 02:18:23 +04:00
|
|
|
<a name='price'></a>
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("features.price.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.price") ?>
|
2008-10-22 02:04:45 +04:00
|
|
|
|
2008-10-22 02:18:23 +04:00
|
|
|
<a name='main'></a>
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("features.main.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.main") ?>
|
|
|
|
|
2008-10-22 02:04:45 +04:00
|
|
|
|
2008-10-22 02:18:23 +04:00
|
|
|
<a name='chat'></a>
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("features.chat.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.chat") ?>
|
2008-10-22 02:04:45 +04:00
|
|
|
|
2008-10-22 02:18:23 +04:00
|
|
|
<a name='operator'></a>
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("features.operator.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.operator") ?>
|
2008-10-22 02:04:45 +04:00
|
|
|
|
2008-10-22 02:18:23 +04:00
|
|
|
<a name='next'></a>
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("features.next.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.next") ?>
|
|
|
|
|
2008-12-09 00:18:29 +03:00
|
|
|
<a name='requirements'></a>
|
|
|
|
<h3><?php echo getlocal("features.requirements.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.requirements") ?>
|
|
|
|
|
|
|
|
<a name='browsers'></a>
|
|
|
|
<h3><?php echo getlocal("features.browsers.title") ?></h3>
|
|
|
|
<?php echo getlocal("features.browsers") ?>
|
|
|
|
|
2008-10-22 02:04:45 +04:00
|
|
|
</div>
|
2008-12-02 00:55:24 +03:00
|
|
|
|
2008-10-22 02:04:45 +04:00
|
|
|
<div id="side">
|
2008-12-02 00:55:24 +03:00
|
|
|
<p><?php echo getlocal("features.content.head") ?></p>
|
2008-10-22 02:04:45 +04:00
|
|
|
<p>
|
2008-12-09 00:18:29 +03:00
|
|
|
<a href="#price"><?php echo getlocal("features.price.title") ?></a><br/>
|
|
|
|
<a href="#main"><?php echo getlocal("features.main.title") ?></a><br/>
|
|
|
|
<a href="#chat"><?php echo getlocal("features.chat.title") ?></a><br/>
|
|
|
|
<a href="#operator"><?php echo getlocal("features.operator.title") ?></a><br/>
|
|
|
|
<a href="#next"><?php echo getlocal("features.next.title") ?></a><br/>
|
|
|
|
<a href="#requirements"><?php echo getlocal("features.requirements.title") ?></a><br/>
|
|
|
|
<a href="#browsers"><?php echo getlocal("features.browsers.title") ?></a><br/>
|
2008-10-22 02:04:45 +04:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2008-11-27 15:10:48 +03:00
|
|
|
|
|
|
|
<?php require_once('inc/footer.i'); ?>
|