<!-- 
if (document.images) {
//nav1on=new Image();
//nav1on.src="images/nav/nav1on.jpg";
nav2on=new Image();
nav2on.src="images/nav/nav2on.jpg";
nav3on=new Image();
nav3on.src="images/nav/nav3on.jpg";
nav4on=new Image();
nav4on.src="images/nav/nav4on.jpg";

//nav1off=new Image();
//nav1off.src="images/nav/nav1off.jpg";
nav2off=new Image();
nav2off.src="images/nav/nav2off.jpg";
nav3off=new Image();
nav3off.src="images/nav/nav3off.jpg";
nav4off=new Image();
nav4off.src="images/nav/nav4off.jpg";

}

function navon(navName) {
	if (document.images) {
	document[navName].src = eval(navName + "on.src");
	}
}

function navoff(navName) {
	if (document.images) {
	document[navName].src = eval(navName + "off.src");
	}
}
function shortMonthArray() {
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(){
shortMonths = new shortMonthArray();
d = new Date();
day = d.getDate();
month = d.getMonth();
year = d.getYear();
str = shortMonths[month] + " " +day + " " +"th. " +getlongYear(year);
document.writeln(str);
}

function openWin( windowURL, windowName, windowFeatures ) { 
return window.open( windowURL, windowName, windowFeatures ) ; 
} 


// -->
