After the "<a" add target="_blank" so you have:
Code:
<a target="_blank" href="...
Will open it in a new window, tabs are a browser feature so you can force a tab to open.
2. Yes. Only members of the usergroup 6 will be able to see it. It may be better if you changed:
Code:
<if condition="$post[usergroupid]!= 6 AND $bbuserinfo[usergroupid] == 6">
To:
Code:
<if condition="!is_member_of($post, 6) AND is_member_of($bbuserinfo, 6)">
The first "6" is a protection list so to speak, so it won't show up for users in this group. The second "6" is the list of usergroups that can see the link. You can add more groups by adding the usergroupid separated by commas, after the "6"