lol Poor Empire I'm here to bug ya knowledge again dude

I've decided that the only way I am going to be able to fix up my WhoseOnline/PrivateMessaging arrangement would be to put them both in a seperate table like C_P has done on his CyberPoetry site.
I was wondering if you could help me here ????
This is the code I have ::::
$pmlink = qq(<td bgcolor="#ffffff" valign="center" align="center" width="20">$pmimg</td>
<TD valign=top $AltColumnColor1><FONT SIZE="$TextSize" FACE="$FontFace"><B><A HREF="$cgi_url/$viewprivate">Inbox</A></B></FONT>
<FONT SIZE="$FDTextSize" FACE="$FontFace">$user - $pmdesc</FONT></TD>
</TD> );
if ($prefs{'status'} eq "off") {
$pmlink = qq(<td bgcolor="#ffffff" valign="center" align="center" width="20"><IMG SRC="$NonCGIURL/pmimages/pmdead.gif" alt=""></td>
<TD valign=top $AltColumnColor1><FONT SIZE="$TextSize" FACE="$FontFace"><B><A HREF="$cgi_url/$privateprefs">Preferences</A></B></FONT>
<FONT SIZE="$FDTextSize" FACE="$FontFace">Private messages are currenly disabled.</FONT></TD>
</TD> );
}
unless ($ShowMods eq 'no') { # display mod column unless set to No in CP
$modcolumn = qq(
<td valign=bottom>
<FONT SIZE="1" FACE="$FontFace" COLOR="$TableStripTextColor"><B>Moderator</B></FONT>
</td></tr>
);# end qq
}
if ($online_message eq "summary") {
$OnlineMsg = $OnlineUserMsg;
} elsif ($online_message eq "list") {
$OnlineMsg = $OnlineUsers;
}
if (lc($ForumTotalOption) eq "both") {
$colspan = 5;
$colspan1 = 6;
} else {
$colspan = 4;
$colspan1 = 5;
}
$onlinelink = qq(<TD bgcolor="#ffffff" valign="center" align="center" width="20"><img src="$NonCGIURL/online.gif" alt=""></td>
<TD valign=top $AltColumnColor1><FONT SIZE="$TextSize" FACE="$FontFace"><B><A HREF="$CGIURL/online.cgi">Currently Browsing the Boards</A></B> ($totalcount)</FONT>
<FONT SIZE="$FDTextSize" FACE="$FontFace">$OnlineMsg</FONT></TD>
</TD> );
if ($online_message ne "none") {
$onlinetable = qq(<tr><td colspan=5 $CategoryStripColor><FONT SIZE="$TextSize" FACE="$FontFace" color="$CategoryStripTextColor"><B>Online Users</B></FONT></td></tr>
<TR>
$onlinelink
</TR> );
}
TotalNewbie