If you are trying add the navbar in your page, like in yours screenshot then use this code:
PHP Code:
<?php
// GO TO FORUM DIR
chdir('/full/path/to/forum/directory');
// STANDARD VBULLETIN STUFF
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'script_name');
require_once('./global.php');
// GENERIC_SHELL VARS
$pagetitle = "Title of Page";
$HTML = ""; // PIECED TOGETHER IN SCRIPT
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('$HTML = "' . fetch_template('yourtemplate') . '";');
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
Then in your template, just use $navbar to get it up.