calendar = new Date();date = calendar.getDate();

function date1 ()
{
document.write(date);document.write(".");month = calendar.getMonth();if (month == 0) {document.write("01")}if (month == 1) {document.write("02")}if (month == 2) {document.write("03")}if (month == 3) {document.write("04")}if (month == 4) {document.write("05")}if (month == 5) {document.write("06")}if (month == 6) {document.write("07")}if (month == 7) {document.write("08")}if (month == 8) {document.write("09")}if (month == 9) {cument.write("10")}if (month == 10) {document.write("11")}if (month == 11) {document.write("12")}
}

function date2 ()
{
document.write(date);document.write(" ");month = calendar.getMonth();if (month == 0) {document.write("января")}if (month == 1) {document.write("февраля")}if (month == 2) {document.write("марта")}if (month == 3) {document.write("апреля")}if (month == 4) {document.write("мая")}if (month == 5) {document.write("июня")}if (month == 6) {document.write("июля")}if (month == 7) {document.write("августа")}if (month == 8) {document.write("сентября")}if (month == 9) {cument.write("октября")}if (month == 10) {document.write("ноября")}if (month == 11) {document.write("декабря")}document.write(" ");year = calendar.getYear();if (year < 100) {document.write("19" + year + "")}else if (year > 1999) {document.write(year)}document.write(" года");
}