<?
    include("/home/stuproj/uit2201p/public_cgi/constants.ini");

	session_register("IDEA_Login_Name");


    if ($value == "messages") {
        //echo ("Display Messages");
        //$Event = $IDEA_EVENT_REQUEST_DAILY_SCHEDULE;
        $relocation = "Location: messages.php";
        header ($relocation);
    }
    if ($value == "schedule") {
        //$Event = $IDEA_EVENT_REQUEST_DAILY_SCHEDULE;
        //$relocation = "Location: ..\controller.php?Event=".$Event."&IDEA_Login_Name=".$IDEA_Login_Name;
        $relocation="Location: schedule.php";
        header ($relocation);
    }

    if ($value == "jokes") {
        $Event = $IDEA_EVENT_REQUEST_JOKE;
        $relocation = "Location: ..\controller.php?Event=".$Event;
        header ($relocation);
    }

    if ($value == "lights") {
		$Event = $IDEA_EVENT_CHECK_LIGHTING;
        //echo ("Lights");
        $relocation = "Location: ..\controller.php?Event=".$Event;
        header($relocation);
    }

    if ($value == "logout") {
        $Event = $IDEA_EVENT_USER_LOGOUT;
        $relocation = "Location: ..\controller.php?Event=".$Event;
        session_start();
        session_destroy();
        //echo $relocation;
        header ($relocation);
    }


?>
