Replace this code:
PHP Code:
$results = $DB_site->query("
SELECT threadid, title FROM " . TABLE_PREFIX . " thread WHERE forumid = 213 ORDER BY title ASC
");
with:
PHP Code:
$results = $DB_site->query("
SELECT threadid, title FROM " . TABLE_PREFIX . " thread WHERE (forumid=XXX OR forumid=XXX OR forumid=XXX OR forumid=XXX) ORDER BY title ASC
");
You can add more OR's, or remove a couple, it's up to you

Dont forget to replace the XXX's though.