in hook cache_templates
ADD
Code:
$globaltemplates = array_merge($globaltemplates, array('TEMPLATE NAME - NO $'));
In hook parse_tamplates
ADD
Code:
eval('$navbar_bottom = "' . fetch_template('TEMPLATE NAME - NO $') . '";');
Using the parse templates hook makes it a global thing so you can stick $templatename anywhere in any template
Create your template then put $templatename in the places where you want it to show.