Ranger - Something like this should be pretty simple and should work...
Open your myvbindex.php file and look for:
// News
if ($newsforum!='') {
Right above that add:
if ($action=="newpage") {
eval("\$newsbits = \"".gettemplate('index_newpage')."\";");
} else {
Then look for:
$DB_site->free_result($getnews);
unset($news);
}
And add another } right below that.
You can change "newpage" in the first part ($action=="newpage") to whatever you want, and also of course name the template to whatever you'd like. You would then add the content you'd like in your new template, and then to display that template instead of the news, you would link to
http://yoursite.com/myvbindex.php?s=$session[sessionhash]&action=newpage