<?php

/* 	ESE Script
	17.08.2006 Alexander Kahl
*/

// Config
include("config.php");
include("logic.php");

if (!isset($_GET["l"]))
	$lang = conf("default_lang");
else
	$lang = $_GET["l"];

if (!isset($_GET["t"]))
	$tmpl = conf("default_template");
else
	$tmpl = $_GET["t"];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
	<head>
		<link rel="stylesheet" type="text/css" href="/2006/ese.css" />
		<title>No Panic! - ESE 2006</title>
	</head>
	<body>
		

<?php
render_template("__menu", $lang);
?>

		<div id="header">
			<div class="invisible">
				NO PANIC!<br />
				Die Erstsemestereinführung 2006
			</div>
		</div>
<?php
render_template($tmpl, $lang);
render_template("__hilfe", $lang);
?>

	</body>
</html>

