you are my hero x 2

. very neat tutorial Revan, thank you.
I also found something else that I thought would be a good addition for those that might run into the same problem.
The problem I faced was that if I didn't want the navbar template included in the page, I would get a javascript error and the jump to page option did not open.
So if you have a page that does not include the $navbar, put this instead of it and it should get rid of the error and also show the jump to page input box.
Code:
<if condition="$show['popups']">
<!-- PAGENAV POPUP -->
<div class="vbmenu_popup" id="pagenav_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
<input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
<input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" />
</form>
</td>
</tr>
</table>
</div>
<!-- / PAGENAV POPUP -->
</if>