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['scid']) or empty($_REQUEST['scid']) or (!eregi("[0-9]", $_REQUEST['scid']))) {
$instruction = $db->Execute("select * from ".$prefix."_instruction where lang=$lang LIMIT 1");
$id = $instruction->fields['id'];
} else {
$id = $_REQUEST['scid'];
$instruction = $db->Execute("select * from ".$prefix."_instruction where id=$id");
}
$body = nl2br(html_entity_decode($instruction->fields['body'],ENT_QUOTES,"utf-8"));
echo '
';
echo '
'. $instr . ' » '.$instruction->fields['title'].'
';
echo $body;
?>