<?
include('../Code/confHeader.inc');
$Me -> goIfInvalid("../index.php");
$Me -> goIfNotChair('../index.php');
$Conf -> connect();

//
// Change the values
//

if (IsSet($toggleChairGrades)) {
  $ShowChairGrades = ! $ShowChairGrades;
}


?>

<html>

<? $Conf->header("View Configuration Buttons ") ?>

<body>

<?
$Conf->infoMsg("Change the configuration parameters.<br> "
	       . "You'll need to refresh other views to have <br>"
	       . "the change affect other windows");
?>

<table align=center>
<tr> <td>
<FORM METHOD=POST ACTION=<?echo $PHP_SELF?>>
<?
if ($ShowChairGrades) {
?>
<input TYPE=SUBMIT NAME=toggleChairGrades VALUE="Hide The Chairs Grades">
<?
} else {
?>
<input TYPE=SUBMIT NAME=toggleChairGrades VALUE="Show The Chairs Grades">
<?
}
?>
</FORM>
</td> </tr>
</table>

</body>
</html>
