Just a little recommendation since my version of the ShowMembers script wasn't too popular. Replace the 30 else if's in a row with a neat switch statement. Or at least condense the two sets of else if's into 1 set.
Right now it's..

<pre>
if ($var == 1) {
$i = 11;
}
else if ....
now once this group of else if's are done you have..
if($var == 1) {
$j = 12;
}
else if ....

</pre>

etc.

Doug
<A HREF="http://www.netherworldrpg.net" target="_new">http://www.netherworldrpg.net</A>