TDay = new Array(); TDay[0] = "Son"; TDay[1] = "Mon"; TDay[2] = "Die"; TDay[3] = "Mit"; TDay[4] = "Don"; TDay[5] = "Fre"; TDay[6] = "Sam"; TMonth = new Array(); TMonth[0] = "Jan"; TMonth[1] = "Die"; TMonth[2] = "Mär"; TMonth[3] = "Apr"; TMonth[4] = "Mai"; TMonth[5] = "Jun"; TMonth[6] = "Jul"; TMonth[7] = "Aug"; TMonth[8] = "Sep"; TMonth[9] = "Okt"; TMonth[10] = "Nov"; TMonth[11] = "Dez"; TDate = new Date(); CurYear = TDate.getYear(); CurYear=(CurYear<2000)?1900+CurYear:CurYear; CurMonth = TDate.getMonth(); CurDayOw = TDate.getDay(); CurDay = TDate.getDate(); TheDate = TDay[CurDayOw] + ' '; TheDate += CurDay + '.'; TheDate += TMonth[CurMonth] + '.'; TheDate += CurYear; function trackTime() { TTime = new Date(); CurHour = TTime.getHours(); CurMin = TTime.getMinutes(); CurSec = TTime.getSeconds(); TheTime = CurHour;// Add them TheTime += ((CurMin < 10)?':0':':') + CurMin; TheTime += ((CurSec < 10)?':0':':') + CurSec; document.time.time_box.value = TheTime; } setInterval('trackTime()',1000); document.write(TheDate+' '); //Real Time Service Script //By m3max (http://m3max.de) //Web-Software function openrealtimeservice(){ var rtsurl="als/start.html" winpops=window.open(rtsurl,"","width=350,height=295,") }