echoi18n("Confirmed participants (that signature forms have been received for) will be posted here on %1 at %2. Please do not contact the fair to inquire about receipt of your signature form until after this date (and only if you are not listed here after this date).",array($d,$t));
echoi18n("The following is a list of all confirmed participants that the signature form has been received for. If you think you registered but you are not on this list, you should contact the %1 immediately.",array($config['fairname']))."<br />";
if($config['regfee']>0)
{
echo"<br />";
echo"<font color=\"red\">*</font>".i18n(" indicates payment was not received with the signature form.");
echo"<br />";
echo"<br />";
}
echo"<table style=\"font-size: 0.9em;\">";
while($r=mysql_fetch_object($q))
{
if($r->category!=$lastcat)
{
echo"<tr><td colspan=\"3\">";
if($lastcat!="something_that_does_not_exist")
echo"<br /><br />";
echo"<h3>$r->category</h3>";
echo"</td></tr>";
$lastcat=$r->category;
//anytime the age category changes, we want to re-force it to display the division again
//no need to output the status if we dont have a reg fee, becuase status is either 'complete' or 'payment pending' but if we dont have a regfee it can never be payment pending, so thus, it must be complete!