[edit] correction for your vb version:
STEP 2:
find
PHP Code:
return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";
replace it as:
PHP Code:
if ($thread['forumid']==X) {return "<a href=\"$righturl\" >".str_replace('\"', '"', $hyperlink)."</a>";
}
else {return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";
}