Yes it is possible, each link will have it's own forum id number so you just make an extra conditional for each forum id... in VB3 you can't use "elseif" so you have to nest conditionals...
Explained here.
But basically for two different forums links you'd use:
Code:
<if condition="$forum[forumid] == 8">
<td class="alt2">Owner: John Smith<br />Manager: Jane Doe</td>
<else />
<if condition="$forum[forumid] == 9">
<td class="alt2">Owner: Joe Johnson<br />Manager: Mary White</td>
<else />
<td class="alt2">$forum[lastpostinfo]</td>
</if>
</if>
That would give you two forum links (forumid 8 and forumid 9) with 2 different owners/managers.