This is a bit complicated....
But you could add some "ifs" to the ubbt.inc.php send_header function so it won't output the header template etc.....
I think this would work.

<br />In ubbt.inc.php Find this:<br /><br /><br /> if (!$debug) {<br /> include("$thispath/templates/$tempstyle/ubbt_header.tmpl");<br /> }<br /><br /><br /><br />and change to this:<br /><br /> if ((!$debug) && (!$config['navonly'])) {<br /> include("$thispath/templates/$tempstyle/ubbt_header.tmpl");<br /> }<br /><br />
Then in your generic page (which has to be PHP) you'd require main, and call the header, but we'll pass the 'navonly' variable so it skips the regular header template.
Like this
<br /><br /><br />require("/whatever/path/ubbthreads/main.inc.php");<br />$config['navonly'] = 1;<br />$html = new html;<br />$html -> send_header("Title of Your Page");<br /><br />
I think that'll do the trick.
