firstname) { echo i18n("Hello %1",array($judgeinfo->firstname)); echo "
"; } echo "
"; //first, we need to see if they havec the current FAIRYEAR activated, if not, we'll keep their acocunt 'dormant' and it wont //be used for anything, but will still be available for them to login in the following years. $q=mysql_query("SELECT * FROM judges_years WHERE judges_id='".$_SESSION['judges_id']."' AND year='".$config['FAIRYEAR']."'"); if(!mysql_num_rows($q)) { echo i18n("If you would like to participate as a judge in the %1 %2 please click the activate button below to activate your judges account for the fair",array($config['FAIRYEAR'],$config['fairname'])); echo "
"; echo "
"; echo "
"; echo "\n"; echo ""; echo "
"; } else { echo i18n("Please use the checklist below to complete your registration. Click on an item in the table to edit that information. When you have entered all information, the Status field will change to Complete"); echo "
"; echo "
"; echo ""; echo ""; //judges personal information echo ""; /* //organization information echo ""; */ //area of expertise echo ""; echo "
".i18n("Registration Item")."".i18n("Status")."
"; echo ""; echo i18n("Personal Information"); echo ""; echo ""; //check to see if its complete $statuspersonal=personalStatus(); echo outputStatus($statuspersonal); echo "
"; echo ""; echo i18n("Organization Information"); echo ""; echo ""; //check to see if its complete $statusorganization=organizationStatus(); echo outputStatus($statusorganization); echo "
"; echo ""; echo i18n("Areas of Expertise"); echo ""; echo ""; //check to see if its complete $statusexpertise=expertiseStatus(); echo outputStatus($statusexpertise); echo "
"; echo "
"; echo "
"; echo i18n("If you are unable to participate as a judge in the %1 %2 please click the deactivate button below to deactivate your judges account for the fair",array($config['FAIRYEAR'],$config['fairname'])); echo "
"; echo "
"; echo "
"; echo "\n"; echo ""; echo "
"; } echo "
"; echo "".i18n("Logout").""; send_footer(); ?>