now = new Date();
year = now.getYear(); if (year < 2000) year = year + 1900;
month = now.getMonth()+1;
day = now.getDate();
document.write(""+year+"”N"+month+"ŒŽ"+day+"“ú");