You could add conditionals to accomplish this:
PHP Code:
<if condition="THIS_SCRIPT == 'forumdisplay'">
<if condition="$_GET[f] == forum id">
header for that forum
</if>
<if condition="$_GET[f] == forum id">
header for that forum
</if>
<else />
Main header Code (for the index page and all other pages).
</if>
Replace forum id with id of the forum you want to show that header on. You can keep adding
PHP Code:
<if condition="$_GET[f] == forum id">
header for that forum
</if>
for more than one forum.
Hope that helps.
Derek