/* ======================================================================
FUNCTION:	lp_footer() 
 
INPUT: 		none.

RETURN:		none.

DESC:		Ausgabe von einheitlichen Fusszeilen für Web-Seiten fuer
                www.local-pages.de/halbneun-theater

USAGE:		hn_footer();

PLATFORMS:	Netscape Navigator 3.01 and higher,
			  	Microsoft Internet Explorer 3.02 and higher,
			  	Netscape Enterprise Server 3.0,
			  	Microsoft IIS/ASP 3.0.
====================================================================== */
function hn_footer()
	{
	document.writeln("<p><font face='Arial'><small><small>");
	document.writeln("Copyright © 1998-2010 - <a href='http://www.local-pages.de/halbneun-theater/' target='_top'>halbNeun Theater</a> - Webdesign");

	document.writeln("<a href='http://www.groepl.de' target='_blank'>");
	document.writeln("<img src='../logo/groepl.gif' border='0' width='69' height='13'><br>");
	document.writeln("</a>");

	document.writeln(document.lastModified); 
        document.writeln(" - <a href='http://www.local-pages.de/halbneun-theater/info/impressum.htm' target='_self'>Impressum</a>, "); 
        document.writeln("<a href='http://www.local-pages.de/halbneun-theater/info/legal_notes.htm' target='_self'>Rechtliche Hinweise</a>");

	document.writeln("</small></small></font>");
	document.writeln("</p>");
	}

