if(!isset($_REQUEST['lang']) or ($_REQUEST['lang']!=1 and $_REQUEST['lang']!=2)) $lang=1;
else $lang=$_REQUEST['lang'];
include ("include/config.php");
include ("include/connect.php");
include ("include/var.php");
if (!isset($_REQUEST['id']) or empty($_REQUEST['id']) or (!eregi("[0-9]", $_REQUEST['id']))) {
$about = $db->Execute("select * from ".$prefix."_about where lang=$lang LIMIT 1");
$id = $about->fields['id'];
} else {
$id = $_REQUEST['id'];
$about = $db->Execute("select * from ".$prefix."_about where id=$id");
}
$body = nl2br(html_entity_decode($about->fields['body'],ENT_QUOTES,"utf-8"));
echo '
';
echo '
'. $abouttit . ' » '.$about->fields['title'].'
';
echo $body;
?>