<!-- 


function imgon(imgName) {
	if (document.images) {
	document[imgName].src = eval(imgName + "on.src");
	}
}

function imgoff(imgName) {
	if (document.images) {
	document[imgName].src = eval(imgName + "off.src");
	}
}
function longMonthArray() {
        this[0] = "January";        this[1] = "February";        this[2] = "March";
        this[3] = "April";        this[4] = "May";        this[5] = "June";
        this[6] = "July";        this[7] = "August";        this[8] = "September";
        this[9] = "October";        this[10] = "November";       this[11] = "December";
        return (this);
}

function getLongYear(year){
year = d.getYear();
if (year < 1000)
year+=1900;
return year;
}

function writeDate(){
longMonths = new longMonthArray();
d = new Date();
day = d.getDate();
month = d.getMonth();
year = d.getYear();

str =  longMonths[month]+ " " + day +" th. " +getLongYear(year);
document.writeln(str);
}


// -->
