Hey man,
you forgot to include the Object.
like this:
<?php
//This is correct if your Class Template resides in a page
//called Template.php.
include("Template.php");
//
// Generate page
//
$page_title = 'NS Community';
$template->set_filenames(array('body' => 'index.tpl'));
$template->assign_vars(array(
'L_MENU' => (include 'contents/menu_m.html'),
'L_BOOTH' => (require '/home/ourisp.com.au/intrik.net/htdocs/nscombat/poll/booth.php'))
);
$template->pparse('body');
?>
good luck,
stage