function findusername($userid)
{
global $fcbfile;
$shoutsf = file($fcbfile['message']);
foreach($shoutsf as $shoutlinef)
{
$shoutf = split_shoutline($shoutlinef);
if ($shoutf['userid'] == $userid)
{
return $shoutf['username'];
break;
}
}
}