Ok, here you go.
Change the template 'forumjump':
search for:
<option value="search" $frmjmpsel[search]>Search Forums</option>
and add after:
<option value="getnp" $frmjmpsel[getnp]>Get New Posts</option>
Change the file 'forumdisplay.php':
Search for:
case 'cp': $goto = 'usercp'; break;
and add after:
case 'getnp': $goto = 'search'; $goto2='&action=getnew'; break;
and search for:
header("Location: $goto.php?s=$sessionhash");
and replace with:
header("Location: $goto.php?s=$sessionhash$goto2");
That should do it. You owe me another one.