/* ======================================================================
FUNCTION:	footer() 
 
INPUT: 		none.

RETURN:		none.

DESC:		Ausgabe von einheitlichen Fusszeilen für Web-Seiten fuer
                www.tgb-handball.com

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("<div style='width: 500; height: 3; border-bottom: 1px dashed #797979'></div>");
	document.writeln("<p><font face='Arial'><small><small>");
	document.writeln("Copyright © 2005-2010 - <a href='http://www.tgb-darmstadt.de' target='_blank'>TGB 1865 Darmstadt e.V.</a> - Webdesign");

	document.writeln("<a href='http://www.groepl.de' target='_blank'>");
	document.writeln("<img src='http://www.tgb-handball.com/images/groepl.gif' border='0' width='69' height='13'><br>");
	document.writeln("</a>");
	document.writeln(document.lastModified, " - <a href='http://www.tgb-handball.com/impressum/impressum.htm' target='_self'>Impressum</a>, <a href='http://www.tgb-handball.com/impressum/rechtlichehinweise.htm' target='_self'>Rechtliche Hinweise</a>");
//	document.writeln("<br><br><br>Stand: ", document.lastModified);

	document.writeln("</small></small></font>");
	document.writeln("</p>");
	}

