<!--
lastmod = document.lastModified;			// get string of last modified date
lastmoddate = Date.parse(lastmod);			// utime
now = new Date(lastmod);				// get string of date now
year = now.getYear()-100+2000					// convert modified string to year
   if(year < 100) year+=2000; 
month = now.getMonth();					// convert modified string to month
   var Monat = new Array("Jan.","Feb.","March","April","May","June","July","August","Sept.","Okt.","Nov.","Dec.")
day = now.getDate();					// convert modified string to date
	
	if((navigator.appVersion).substring(0,1)<4 && (navigator.appName).substring(0,1)=='M')
	{
	}
	else
	{

	// document.writeln('<style type="text/css"><!--A  {text-decoration : none;}--></style>');

	if(lastmoddate == 0)			// unknown date (or January 1, 1970 GMT)
	{
	   document.writeln('<p>&nbsp;<p>');
	   document.writeln('<span class="copy" style="font-size: 9;">Erstellt vom ');
	   document.write('<a href="mailto://webmaster@mgas.de" ');
	   document.writeln('> MGAS Internet Team</a>, ');
	   document.writeln("letzte &Auml;nderung: unbekannt");
	   document.writeln('</span>');
	} 
	else
	{
	   document.writeln('<p>&nbsp;<p>');
	   document.writeln('<span class="copy" style="font-size: 9;">Erstellt vom ');
	   document.write('<a href="mailto://webmaster@mgas.de" ');
           document.writeln('>MGAS Internet Team</a>, ');
	   document.writeln("letzte &Auml;nderung: " + Monat[month] + " " + day + ", " + year);
	   document.writeln('</span>');
	}

	}
//-->
