diff --git a/common.inc.php b/common.inc.php
index 29859ae2..10c462d0 100644
--- a/common.inc.php
+++ b/common.inc.php
@@ -421,6 +421,40 @@ if(substr(getcwd(),-6)=="/admin" || substr(getcwd(),-7)=="/config")
if(file_exists($prependdir."data/logo-100.gif"))
echo "
";
echo "
";
+if(isset($_SESSION['users_type'])) {
+ $types = array('volunteer' => 'Volunteer', 'judge' => 'Judge',
+ 'student'=>'Participant','committee'=>'Committee Member',
+ 'region'=>'Region');
+ if($_SESSION['users_type'] != false) {
+ echo i18n($types[$_SESSION['users_type']]);
+ }
+ echo " {$_SESSION['email']}: ";
+ echo "
[Logout]";
+} else if(isset($_SESSION['email'])) {
+ /* Backwards compatible login settings */
+ /* Check for committee */
+ if(isset($_SESSION['committee_member_id'])) {
+ echo i18n('Committee Member');
+ echo " {$_SESSION['email']}: ";
+ echo "
[Logout]";
+ } else if(isset($_SESSION['judges_id'])) {
+ echo i18n('Judge');
+ echo " {$_SESSION['email']}: ";
+ echo "
[Logout]";
+ } else if(isset($_SESSION['registration_id'])) {
+ echo i18n('Participant');
+ echo " {$_SESSION['email']}: ";
+ echo "
[Logout]";
+ } else {
+ echo " ";
+ }
+
+} else {
+ echo i18n('Not Logged In');
+}
+echo "
";
?>