<!DOCTYPE html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<?php
include ("../php/menu.php");
?>
<HTML>
<head>
<meta http-equiv="XContent-Type" content="text/html; charset=<?php echo i18n("Charset"); ?>">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>ProjectButler - <?php echo i18n("Menü"); ?></TITLE>
<link rel="stylesheet" type="text/css" href="../../includes/menu_style.css">
</head>
<body bgcolor="#316480" link="#666666" alink="#cc0033" vlink="#999999" text="#666666">
<table cellpadding="2" cellspacing="2" border="0">
<tr>
<td align="left"><a href="http://www.webdynamite.com" target="_blank" bgcolor="white"><img src="../../images/logo.gif" border=0 alt="WebDynamite-Homepage" width=144 height=30></a>
<br><br></td>
</tr>
<tr>
<td>
<?php echo i18n("Benutzer"); ?>: <?php echo $username; ?>
</td>
</tr>
<?php
for($i=1; $i<= count($menu_id_list); $i++) {
?>
<tr>
<td>
<input name="<? echo i18n($topic[$i]); ?>" value="<? echo i18n($topic[$i]); ?>" type="button" onclick="parent.main.location.href='<?php echo $path[$i]; ?>';" class="menu_buttonstyle">
</td>
</tr>
<?php
}
?>
</table>
<br>
<table cellpadding="1" cellspacing="2" border="0">
<tr>
<td>
<input name="Logout" value=" <?php echo i18n("Abmelden"); ?> " type="button" onclick="top.location.href='../../logout.php';" class="menu_buttonstyle">
</td>
</tr>
</table>
</body>
</html>