function initArray()
{
this.length = initArray.arguments.length
for (var i=0;i<this.length;i++)
this[i+1] = initArray.arguments[i]
} // end initArray.

document.write("<center>");
document.write("<DIV class=copyright><hr width=430>");
document.write("Copyright &copy; 1997-2008 <a href=\"http://www.msstudio.com.pl/\" target=\"_top\">MS&nbsp;STUDIO</a> - Wszelkie prawa zastrzeżone<br>");
document.write("Opracowanie i&nbsp;administracja <a href=\"http://www.msstudio.com.pl/\">MS&nbsp;STUDIO <img src=\"http://www.msstudio.com.pl/images/flaga.gif\" border=\"0\"></a> | <a href=\"http://www.msstudio.com.pl/main.html\">O NAS</a><br>");
document.write("Uwagi techniczne: <a href=\"mailto:slawek@msstudio.com.pl?subject=Uwaga techniczna MS Studio: \">Slawi</a> | ");
document.write("Security <a href=\"mailto:marcin@msstudio.com.pl?subject=Security \">HeniO<a> <a href=\"mailto:marcin@msstudio.com.pl?subject=Security \"><img src=\"http://www.msstudio.com.pl/images/smiley.gif\" border=\"0\" width=\"14\"></a><br>");

var DOWArray = new initArray("niedziela", "poniedziałek", "wtorek", "środa", "czwartek", "piątek", "sobota");
var MOYArray = new initArray("stycznia", "lutego", "marca", "kwietnia", "maja", "czerwca", "lipca", "sierpnia","września", "października", "listopada", "grudnia");
var LastModDate = new Date(document.lastModified);
var godzina = LastModDate.getHours();
var minuta = LastModDate.getMinutes();
var min = minuta;
if (min < 10) {minuta = "0" + min}
document.write("Data ostatniej modyfikacji: ");
document.write(DOWArray[(LastModDate.getDay()+1)],", ");
document.write(LastModDate.getDate()," ");
document.write(MOYArray[(LastModDate.getMonth()+1)]," ");
document.write((LastModDate.getYear()+1900),",");
document.write(" ","g.");
document.write(" ");
document.write((godzina),":");
document.write((minuta));
document.write(".");

var ddate = LastModDate;
var ssek = ((godzina * 60 * 60) + (minuta * 60)) * 1000;
var now = new Date();
var diff = now.getTime() - ddate.getTime() + ssek;
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
if (days > 0)
  {
  if (days == 1)
    {document.write(" (" + days + " dzień temu)");}
  else
    {document.write(" (" + days + " dni temu)");}
  }
else {document.write(" (Dzisiaj)");}

document.write("</DIV><BR>");
