<?
$myid=$_COOKIE["usid"];
echo "<FONT size=1 color=\"#000000\" face=\"Arial\">\n";
if ($myid>0)
{
echo"<DIV align=\"right\">You <u>can</u> post new topic in this forum</DIV>\n";
echo"<DIV align=\"right\">You <u>can</u> reply to topics in this forum</DIV>\n";
echo"<DIV align=\"right\">You <u>can</u> vote in polls in this forum</DIV>\n";
if ($myid==1)
{
echo"<DIV align=\"right\">You <u>can</u> post new polls in this forum</DIV>\n";
echo"<DIV align=\"right\">You <u>can</u> delete messages in this forum</DIV>\n";
}
}else
{
echo"<DIV align=\"right\">You <u>cannot</u> post new topic in this forum</DIV>\n";
echo"<DIV align=\"right\">You <u>cannot</u> reply to topics in this forum</DIV>\n";
echo"<DIV align=\"right\">You <u>cannot</u> vote in polls in this forum</DIV>\n";
echo"<DIV align=\"right\">You <u>can</u> view topics in this forum</DIV>\n";
}
//echo"<DIV align=\"right\"></DIV>";
echo"</FONT>\n";
?>