Basically I want to create a "shell" template with OFTW. With OFTW being the main template and using COFTW_FAQ template as an insert into OFTW. The script that uses OFTW is oftw.php and I just created template COFTW_FAQ with the following contents which I want to insert into OFTW:
HTML Code:
<div class=block>
<h2 class=blockhead>F.A.Q</h2>
<div class=blockbody>Hello
</div>
</div>
Does that mean I have to include the second template in oftw.php?
Updated Plug-ins: (still not working

) (both with global_start as hook)
PHP Code:
$templater = vB_Template::create('COFTW_FAQ');
$templater->register('oftw_faq', $oftw_faq);
$mytemplate_rendered = $templater->render();
PHP Code:
$templater = vB_Template::create('OFTW');
$templater->register('COFTW_FAQ', $mytemplate_rendered);
$mytemplate2_rendered = $templater->render();
And using {vb:raw COFTW_FAQ} in OFTW template but still not getting anything. Any more ideas as to why still not showing up anything?