<!--
function write_date()
{
var thetime=new Date();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();
var nyear=thetime.getYear();
var AorP=" ";

if (nday==0)
nday="Sunday";
if (nday==1)
nday="Monday";
if (nday==2)
nday="Tuesday";
if (nday==3)
nday="Wednesday";
if (nday==4)
nday="Thursday";
if (nday==5)
nday="Friday";
if (nday==6)
nday="Saturday";


if (nmonth==0)  nmonth="January";
if (nmonth==1)  nmonth="February";
if (nmonth==2)  nmonth="March";
if (nmonth==3)  nmonth="April";
if (nmonth==4)  nmonth="May";
if (nmonth==5)  nmonth="June";
if (nmonth==6)  nmonth="July";
if (nmonth==7)  nmonth="August";
if (nmonth==8)  nmonth="September";
if (nmonth==9)  nmonth="October";
if (nmonth==10)  nmonth="November";
if (nmonth==11)  nmonth="December";


if (nyear<10)
nyear= "200"+nyear;

if ((nyear<99) && (nyear>=00))
nyear="20"+nyear;

if (nyear=101)
nyear="2006";

else 
nyear=": Wie <a href=feedback.html target=middle>gefällt Ihnen diese Seite ?</A>";

<!--oder mit Wochentagslink <a href="+nday+".html>--->
document.write(""+nday+", "+nmonth+" "+ntoday+", "+nyear);
}
//-->
