// © 2000 nickyz, date script

var now = new Date();
var yr = now.getYear();

var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();

if(mName==1) Month="Януари";
if(mName==2) Month="Февруари";
if(mName==3) Month="Март";
if(mName==4) Month="Април";
if(mName==5) Month="Май";
if(mName==6) Month="Юни";
if(mName==7) Month="Юли";
if(mName==8) Month="Август";
if(mName==9) Month="Септември";
if(mName==10) Month="Октомври";
if(mName==11) Month="Ноември";
if(mName==12) Month="Декември";

if (yr<2000) yr=yr+1900;

// String to display current date.

   var todaysDate =(dayNr + " " + Month + " " + yr);

// Write date to page.

document.open();
document.write(todaysDate);
