﻿/* ======================================================================
FUNCTION:	footer() 
 
INPUT: 		none.

RETURN:		none.

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

USAGE:		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 footer()
	{
	document.writeln("<p><font face='Arial'><small><small>");
	document.writeln("Copyright © 1998-2009 - Erbstößer GmbH - Webdesign");

	document.writeln("<a href='http://www.local-pages.de/groepl/'>");
	document.writeln("<img src='../images/groepl.gif' alt='groepl.gif (1170 Byte)' border='0' width='69' height='13'><br>");
	document.writeln("</a>");
	document.writeln("<a href='../impressum/index.htm'>Impressum</a>, ");
	document.writeln("<a href='../script/legal_notice.htm'>Rechtliche Hinweise</a><br>");
//  	document.writeln("Letzte Änderung: ", document.lastModified);

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