<!--
function clock() {
var date = new Date()
var year = date.getYear()
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
var month = date.getMonth()
var day = date.getDate()
var hour = date.getHours()
var minute = date.getMinutes()
var second = date.getSeconds()
var months = new Array("JANUAR", "FEBRUAR", "MARS", "APRIL", "MAI", "JUNI", "JULI", "AUGUST", "SEPTEMBER", "OKTOBER", "NOVEMBER", "DESEMBER")

var monthname = months[month]

if (hour < 10) {
hour = '0' + hour
}

if (minute < 10) {
minute = "0" + minute
}

if (second < 10) {
second = "0" + second
}


parent.document.title = "feltvogn.nu - " + day + ". " + monthname + ", " + year + " - " + hour + ":" + minute + ":" + second

setTimeout("clock()", 1000)

}
//-->

