<?php
	// Start session.
	session_start();
	
	// Set a key, checked in mailer, prevents against spammers trying to hijack the mailer.
	$security_token = $_SESSION['security_token'] = uniqid(rand());
	
	if ( ! isset($_SESSION['formMessage'])) {
		$_SESSION['formMessage'] = 'F&uuml;llen Sie bitte das untenstehende Formular aus, um mir eine Mail zu senden.';	
	}
	
	if ( ! isset($_SESSION['formFooter'])) {
		$_SESSION['formFooter'] = '';
	}
	
	if ( ! isset($_SESSION['form'])) {
		$_SESSION['form'] = array();
	}
	
	function check($field, $type = '', $value = '') {
		$string = "";
		if (isset($_SESSION['form'][$field])) {
			switch($type) {
				case 'checkbox':
					$string = 'checked="checked"';
					break;
				case 'radio':
					if($_SESSION['form'][$field] === $value) {
						$string = 'checked="checked"';
					}
					break;
				case 'select':
					if($_SESSION['form'][$field] === $value) {
						$string = 'selected="selected"';
					}
					break;
				default:
					$string = $_SESSION['form'][$field];
			}
		}
		return $string;
	}
?><!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=utf-8" />
		<meta name="generator" content="RapidWeaver" />
		
		
		<title>Kontakt</title>
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/styles.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/colors-standard-vorlage.css" />
		<!--[if IE 6]><style type="text/css" media="screen">body {behavior: url(../rw_common/themes/Patchy/csshover.htc);}</style><![endif]-->

		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/css/sidebar/sidebar_right.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/css/font_style/font_serif.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/css/graphics/tape_top.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/css/graphics/tape_bottom.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/css/graphics/paper_bottom.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="../rw_common/themes/Patchy/css/graphics/paper_right.css" />
		
		
		
		<script type="text/javascript" src="../rw_common/themes/Patchy/javascript.js"></script>
		
		
		
		
		
		


	</head>

	<body>
		
		<!-- This page was created with RapidWeaver from Realmac Software. http://www.realmacsoftware.com -->
		
			<div id="container">
			
				<div id="siteTitle">
					<h1>Familie Ehleben</h1>
					<h2></h2>
				</div>
				
				<div id="navBackground">
					<div style="z-index: 3000;">
						<div style="position: absolute; z-index:1000;" id="navcontainer"><ul><li><a href="../index.html" rel="self">Home</a></li><li class="current"><a href="index.php" rel="self">Kontakt</a></li><li><a href="../code/index.html" rel="self">Impressum</a></li></ul></div>
					</div>
				</div>
				<div id="contentTop">
					<div id="tapeTop"></div>
					<div id="breadcrumb"></div>
				</div>
	
				<div id="backPageSide"></div>
	
				<div id="contentMiddle">
					<div id="sidebarContainer">
						<div id="logoContainer">
							
						</div>
						<div id="sidebarTitle">
							<h3></h3>
						</div>
						<div id="sidebarContent">
							
							<div id="archives">
								
							</div>
						</div>
					</div>
					<div id="content">
						
<div class="message-text"><?php echo $_SESSION['formMessage']; unset($_SESSION['formMessage']); ?></div>
						E-Mail: axel@ehleben.de<br />
<div class="form-footer"><?php echo $_SESSION['formFooter']; unset($_SESSION['formFooter']); ?></div><br />

<?php unset($_SESSION['form']); ?>
						Telefon: +49 5432 9049660</div>
					<div class="clearer"></div>
				</div>
				
				<div class="clearer"></div>
				
				<div id="contentBottom">
					<div id="tapeBottomLeft"></div>
					<div id="tapeBottomRight"></div>
				</div>
				
				<div id="backPageBottom"></div>

				<div id="footer">&copy; 2025 A.Ehleben</div>
			</div>

		
		
	</body>

</html>