/* ======================================================================
FUNCTION:	lp_footer() 
 
INPUT: 		none.

RETURN:		none.

DESC:		Ausgabe von einheitlichen Fusszeilen für Web-Seiten fuer
                wwwe.local-pages.de

USAGE:		lp_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 lp_footer()
	{
	document.writeln("<p><font face='Arial'><small><small>");
	document.writeln("Copyright © 1998-2011 - <a href='http://www.local-pages.de'>Darmstadt Local-Pages</a> - Webdesign");

	document.writeln("<a href='http://www.groepl.de'>");
	document.writeln("<img src='../images/groepl.gif' border='0' width='69' height='13'><br>");
	document.writeln("</a>");
	document.writeln(document.lastModified, " - <a href='http://www.local-pages.de/da/lp_impr.htm' target='_self'>Impressum</a>, <a href='http://www.groepl.de/ix_rechtliche_hinweise.htm' target='_self'>Rechtliche Hinweise</a>");
//	document.writeln("<br><br><br>Stand: ", document.lastModified);

	document.writeln("</small></small></font>");
	document.writeln("</p>");
	}


