<?

function HTML_start($jscript="")
{
?>

	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

	<html xmlns="http://www.w3.org/1999/xhtml">

	<head>
	<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
	<meta name="robots" content="noindex, nofollow" />
	<title>SuperDARN 2008 - Administrator's Console</title>
	<style type="text/css" media="all">@import "style.css";</style>
	<?
		if($jscript!="")
		{
			echo "<script type=\"text/javascript\" src=\"".$jscript."\"></script>";
		}
	?>
	</head>

	<body>
	<img class="left" src="http://www.tiger.latrobe.edu.au/images/sd_sm.gif" />
	<img class="right" src="http://www.tiger.latrobe.edu.au/images/logo_5.jpg" />

	<div id="Header">
		<a href="main.php" title="SuperDARN 2008 - Admin Console HOME">SuperDARN 2008 Administrator HOME</a>
	</div>
	<div id="Content">

<?
}

function HTML_end()
{
?>

	</div>
	<div id="Menu">
		<a href="delList.php" title="Delegate Listing">Delegate Listing</a><br />
		<a href="parList.php" title="Partner Listing">Partner Listing</a><br />
		<a href="preList.php" title="Presentation Listing">Presentation Listing</a><br />
		<a href="accList.php" title="Accomodation Listing">Accomodation Listing</a><br />
		<a href="sesslst.php" title="Paper &amp; Session List">Paper &amp; Session List</a><br />
		<br />
		<a href="delAffil.php" title="Delegate Affiliations">Delegate Affiliations</a><br />
		<br />
		<a href="dietReq.php" title="Dietary Requirments">Dietary Requirments</a><br />
		<a href="otspReq.php" title="Other Requirements">Other Requirements</a><br />
		<a href="wkshReq.php" title="Workshop Requests">Workshop Requests</a><br />
		<br />
		<a href="sessmgm.php" title="Session Management">Session Management</a><br />
		<a href="sessass.php" title="Session Assignment">Session Assignment</a><br />
		<br />
		<a href="makeCD.php" title="Make Proceedings CD">Make Proceedings CD</a><br />
		<br /><br />
		<a href="logout.php" title="Logout">Logout</a><br />
	</div>
	</body></html>

<?
}

function HTML_table_start($tHEAD, $tSTYLE="")
{
	echo "<table><tr>";
	foreach($tHEAD as $title)
	{
		if($tSTYLE == "")
			echo "<th>".$title."</th>";
		else
			echo "<th style=\"".$tSTYLE."\">".$title."</th>";
	}
	echo "</tr>";
}

function HTML_table_end()
{
	echo "</table>";
}

function HTML_brk($n=1)
{
	for($i=0; $i < $n; $i++)
	{
		echo "<br />";
	}
}
?>
