<?php
require_once("src/core/managers/LoginManager.php");
require_once("src/widgets/MainMenu.php");
require_once("src/widgets/SubMenu.php");
require_once("src/widgets/CookieCrumble.php");
require_once("src/widgets/UserLogin.php");
require_once("src/widgets/UserViewer.php");

session_start();

// The ID of this page is in SiteMap.xml
$curPageId = 'contact';

// Get an instance of the LoginManager
$lm = LoginManager::instance();

// Log the user out if that's what they want
$url = explode("?", $_SERVER['PHP_SELF']);
$lm->logoutOnRequest($url[0]);

// Check if the user is logged in
$user =& $lm->getLoggedInUser();

// Get the user's level
$userLevel = 0;
if (isset($user)) {
	$userLevel = $user->getUserLevel();
}

$mainMenu =& new MainMenu($curPageId, $userLevel);
$cookieCrumble =& new CookieCrumble($curPageId);
$userLogin =& new UserLogin(&$user);
$subMenu =& new SubMenu($curPageId, $userLevel);
$users =& new UserViewer(&$user, USERVIEWER_PUBLIC, $_GET['sortOrder']);

?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<title>EECS REFS</title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
		<link href="core.css" rel="stylesheet" type="text/css">
	</head>
	<body>
		<table align="center" class="bodyTable">
			<tr><td><img src="images/logo.jpg" alt="EECS REFS Logo"/></td><td colspan="2" valign="top"><? echo $mainMenu->toHtml() ?></td></tr>
  			<tr><td colspan="2" valign="top"><img src="images/header.jpg" alt=""/></td></tr>
  			<tr><td valign="top" class="cookieCrumbleTd"><? echo $cookieCrumble->toHtml() ?></td><td class="cookieCrumbleTd"><? echo $userLogin->getLoginWidget() ?></td></tr>
  			<tr>
  				<td class="bodyLeftTd">
					<? echo $subMenu->toHtml() ?>
                </td>
    			<td width="*" class="bodyCenterTd">
					<br/>
					<p align="center">To contact members of the EECS REFS you may either send an email to 
					<br><img src="images/refs-email.jpg" alt="EECS REFS Email Address: eecs-refs ~_A__T_~ mit DOT edu" /><br/>
					which will reach all of us at once, or you may contact us individually.<p>
					<p class="jtext">Please note that if you contact a REFS member individually, it is not guaranteed that (s)he will get back to you immediatelly. 
					We all try our utmost best to be in constant email contact; however, there are situations 
					(conferences, internships, vacation, etc.) that make this impossible. If you do not hear 
					back from a REFS memeber, please either contact another memeber or send an email to the entire group.
					Thank you in advance for your understanding!</p>  
					
					<br/>
					<? echo $users->toHtml(); ?>
                    
                    <a name="FoundingMembers"></a>
                    <h1>Founding EECS REFS Members</h1>
                    <table width="*" border="0">
                    	<tr>
                        	<td>Sourav Dey</td><td>2005-2007</td>
                        </tr>
                        <tr>
                        	<td>Keith Santarelli</td><td>2005-2007</td>
                        </tr>
                        <tr>
                        	<td>Mario Valenti</td><td>2005-2007</td>
                        </tr>
                    </table>
                    
                    <a name="PreviousMembers"></a>
            <h1>Previous EECS REFS Members</h1>
			<table width="*" border="0">
			<tr>
				<td>Finale Doshi-Velez</td><td>2010-2012</td>			
			</tr>
			<tr>
				<td>James Cowling</td><td>2009-2012</td>			
			</tr>
			<tr>
				<td>Mohamad Araghchini</td><td>2008-2012</td>			
			</tr>
			<tr>
				<td>Shirley Shi</td><td>2009-2011</td>
			</tr>
			<tr>
				<td>MinJi Kim</td><td>2009-2011</td>
			</tr>
			<tr>
				<td>Grace Wang</td><td>2009-2011</td>
			</tr>
			<tr>
				<td>Patrick Schmid</td><td>2007-2011</td>
			</tr>
			<tr>
				<td>Dennis Wei</td><td>2007-2010</td>
			</tr>
			<tr>
				<td>Myung Jin Choi</td><td>2008-2010</td>
			</tr>
			<tr>
				<td>Harr Chen</td><td>2007-2009</td>
			</tr>
			<tr>
				<td>Jennifer Roberts</td><td>2007-2009</td>
			</tr>
			<tr>
				<td>Nancy Chen</td><td>2007-2009</td>
			</tr>
			<tr>
				<td>Stephen Hou</td><td>2007-2009</td>
			</tr>
			<tr>
				<td>Thomas Yeo</td><td>2007-2008</td>
			</tr>
			<tr>
				<td>Danielle Hinton</td><td>2007-2008</td>
			</tr>
			<tr>
				<td>Liang-Yu Chen</td><td>2007-2008</td>
			</tr>
			<tr>
				<td>Guy Weichenberg</td><td>2007-2008</td>
			</tr>
			</table>
                    
			  </td>
  			</tr>
  			<tr><td colspan="3" class="footerTd">&copy; EECS REFS</td></tr>
  			<tr><td colspan="3"><img src="images/footerShadow.jpg" alt=""/></td></tr>
		</table>
	</body>
</html>
