Copyright (C) 2005 James Grant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ?> 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(); ?>