<!--
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();					// convert modified string to year
if(year == 1900 || year == 0 || year == 100){
	year = 2000;
}
if(year == 101 || year == 1901 || year == 01){
	year = 2001;
}
if(year < 100)
	{
	year = year + 1900;
	}
month = now.getMonth();					// convert modified string to month
var Monat = new Array("Januar","Februar","M&auml;rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
day = now.getDate();					// convert modified string to date
	
	if((navigator.appVersion).substring(0,1)<4 && (navigator.appName).substring(0,1)=='M')
	{
	}
	else
	{

	if(lastmoddate == 0)			// unknown date (or January 1, 1970 GMT)
	{  
	   document.writeln('<p>&nbsp;</p>');
	   document.writeln("<p>Letzte &Auml;nderung: unbekannt</p>");
	} 
	else
	{
//	   document.write('<p>&nbsp;<p>');
	   document.write('<font color="#B0B0B0" face="verdana" size="-2">');
//	   document.write('<a href="mailto:ihre.adresse@daimlerchrysler.com" class="linksmall">')
  	   document.writeln("|||&nbsp;&nbsp;&nbsp;Grillen-darf-nicht-gesund-sein.de");
//	   document.writeln('</a>');
	   document.writeln("&nbsp;&nbsp;&nbsp; ||| &nbsp;&nbsp;&nbsp;Letzte &Auml;nderung: " + day + ". " + Monat[month] + " "+  year + "&nbsp;&nbsp;&nbsp; ||| ") ;
	   document.writeln('</font>');
	}
}	
//-->
