document.writeln('<SCRIPT LANGUAGE=\"JavaScript\">');
document.writeln('<!-- Hide it');
document.writeln('// Returns today\'s date in a string with full day and month names');
document.writeln('// by Roger C. Scudder Jr. on 10-2-98');
document.writeln('// corrected for Netscape by Grzegorz Golebiewski');
document.writeln('DayName = new Array(7)');
document.writeln('DayName[0] = \"w niedzielę \"');
document.writeln('DayName[1] = \"w poniedziałek \"');
document.writeln('DayName[2] = \"we wtorek \"');
document.writeln('DayName[3] = \"w środę \"');
document.writeln('DayName[4] = \"w czwartek \"');
document.writeln('DayName[5] = \"w piątek \"');
document.writeln('DayName[6] = \"w sobotę \"');
document.writeln('');
document.writeln('MonthName = new Array(12)');
document.writeln('MonthName[0] = \"stycznia \"');
document.writeln('MonthName[1] = \"lutego \"');
document.writeln('MonthName[2] = \"marca \"');
document.writeln('MonthName[3] = \"kwietnia \"');
document.writeln('MonthName[4] = \"maja \"');
document.writeln('MonthName[5] = \"czerwca \"');
document.writeln('MonthName[6] = \"lipca \"');
document.writeln('MonthName[7] = \"sierpnia \"');
document.writeln('MonthName[8] = \"września \"');
document.writeln('MonthName[9] = \"października \"');
document.writeln('MonthName[10] = \"listopada \"');
document.writeln('MonthName[11] = \"grudnia \"');
document.writeln('');
document.writeln('function getDateStr(){');
document.writeln('    var Today = new Date()');
document.writeln('    var WeekDay = Today.getDay()');
document.writeln('    var Month = Today.getMonth()');
document.writeln('    var Day = Today.getDate()');
document.writeln('    var Year = Today.getYear()');
document.writeln('');
document.writeln('    if(Year <= 99)');
document.writeln('        Year += 1900');
document.writeln('');
document.writeln('    return DayName[WeekDay] + \",\" + \" \" + Day + \" \" + MonthName[Month] + \" \" + Year');
document.writeln('}');
document.writeln('//-->');
document.writeln('</SCRIPT>');
document.writeln('');
document.writeln('<SCRIPT>document.write(\"Witamy \" + getDateStr())</SCRIPT>');
