<?php SESSION_START(); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
			<title>V.I.C. - Contact</title>
	</head>
	<body>
		<?php
			$lang = "de";
			
			if (isset($_GET["language"]))
			{
				$lang = $_GET["language"];
			}

			$_SESSION["language"] = $lang;
			
			if ($lang == "de")
			{
		?>
			Du willst Kontakt zu den Spielleitern der V.I.C. herstellen oder hast eine Anmerkung zur Homepage, dann hilft dir unser Kontaktformular weiter.
		<?php	
			}
			else
			{
		?>
			If you want to contact the V.I.C. storytellers or if you have some notifications about the hompage, you can use our contact form.
		<?php
			}
		?>
		<br />
		<p>
			<form action="contact_mail.php" method="POST">
				<table>
					<tr>
						<td>E-Mail-Adresse</td>
						<td><input type="text" name="mail"/></td>
					</tr>
					<tr>
						<td>An / To</td>
						<td>	
							<select size="1" name="An">
								<option value="admin">Administrator</option>
								<option value="Spielleiter">Spielleiter</option>
							</select>
						</td>
					</tr>
					<tr>
						<td>Betreff: </td>
						<td><input type="Text" name="betreff"></td>
					</tr>
					<tr>
						<td colspan="2"><textarea name="text" cols="40" rows="10">Text</textarea></td>
					</tr>
					<tr>
						<td colspan="2">
							<input type="Submit" value="<?php if ($lang == "de") { ?>Senden<?php } else { ?>Send<?php } ?>">
							<input type="Reset" value="<?php if ($lang == "de") { ?>Zurücksetzen<?php } else { ?>Reset<?php } ?>">
						</td>
					</tr>
				</table>
			</form>
		</p>
	</body>
</html>