////////////////////////////////////////////////////////////
///////////  erzeugt erster Teil einer Seite  //////////////
////////////////////////////////////////////////////////////

function anfang(a){
document.writeln('  	<div id="content">	');
document.writeln('  		<div style="width:100%; text-align: right;">');
document.writeln('  		<a href="index.html">Start</a> | <a href="kurzfristig.html">Kontakt</a> | letzte &Auml;nderung: 15.12.2011');
document.writeln('  		</div>');
document.writeln('  		<div id="header">');
document.writeln('  			<div id="logo">');
document.writeln('  				<h1>Junge Mutter mit Kind</h1>');
document.writeln('  				<p style="font: bold 1.6em Arial;color:white ">Stiftung "Ulrika Nisch"</p>');
document.writeln('  				<img style="margin:-90px 0px 0px 850px;" src="images/Logo-Caritas.jpg" />');
document.writeln('  			</div>');
document.writeln('  		</div>');
document.writeln('  		<ul id="menu">');
document.writeln('  			<li><a href="index.html">Ulrika Nisch Haus</a></li>');
/*document.writeln('  			<li><a href="beratung.html">Aktion "Wir helfen weiter"</a></li>');
*/
document.writeln('  			<li><a href="kurzfristig.html">Kurzfristig</a></li>');
document.writeln('  			<li><a href="material.html">Material</a></li>');
document.writeln('  			<li><a href="links.html">Links</a></li>');
document.writeln('  			<li><a id="last" href="aktuelles.html">Aktuelles</a></li>');	
document.writeln('  		</ul>');
document.writeln('  		<div style="clear: both;"></div>		');	
document.writeln('  		<div style="padding:20px;"><p class="ueberschrift">' + a + '</p><br />');

}

////////////////////////////////////////////////////////////
///////////  erzeugt ende Teil einer Seite  ////////////////
////////////////////////////////////////////////////////////
function ende(e){ 
document.writeln('  		</div>');
document.writeln('		<div style="clear: both;"></div>');
document.writeln('	</div>');
document.writeln('	<!--div id="prefooter">');
document.writeln('		<p>Maecenas libero neque, volutpat sit amet, varius et, pretium quis, purus. Nulla ut magna. Nunc nec dui eget erat vulputate sagittis. Suspendisse fermentum odio.</p>');
document.writeln('	</div-->');
document.writeln('	<div id="footer">');
document.writeln('		<p class="right">letzte &Auml;nderung: 26.11.2011 - <!--a href="#">Sitemap</a--><a href="#oben">nach oben</a></p>');
document.writeln('		<p>&copy; Copyright 2011, Stiftung Ulrika Nisch<!--a href="#">Website Traffic</a>, Design: Luka Cvrk, <a title="Awsome Web Templates" href="http://www.solucija.com/">Solucija</a--></p>');
document.writeln('	</div>');
}
