function starttime() {
	time();
	window.setInterval("time()", 1000);
	sfld = document.getElementById("search");
	sfld.value = "Suchbegriff";
	sfld.select();
	}

function time() {
	var now = new Date();
	var moname = new Array(12);
	var daname = new Array(6);
	
	moname[1] = "Januar"; moname[2] = "Februar"; moname[3] = "März";
	moname[4] = "April"; moname[5] = "Mai"; moname[6] = "Juni";
	moname[7] = "Juli"; moname[8] = "August"; moname[9] = "September";
	moname[10] = "Oktober"; moname[11] = "November"; moname[12] = "Dezember";
	
	daname[0] = "Sonntag"; daname[1] = "Montag"; daname[2] = "Dienstag";
	daname[3] = "Mittwoch"; daname[4] = "Donnerstag"; daname[5] = "Freitag";
	daname[6] = "Samstag";
	
	year = now.getFullYear();
	month = now.getMonth() + 1;
	day = now.getDate();
	weekday = now.getDay();
	
	hours = now.getHours();
	minutes = now.getMinutes();
	seconds = now.getSeconds();
	thetime = daname[weekday] + ", ";
	thetime += (day < 10) ? "0" + day + ". " : day + ". ";
	thetime += moname[month] + " ";
	thetime += year + ", ";
	thetime += (hours < 10) ? "0" + hours + ":" : hours + ":";
	thetime += (minutes < 10) ? "0" + minutes + ":" : minutes + ":";
	thetime += (seconds < 10) ? "0" + seconds : seconds ;
	thetime += " Uhr";

	element = document.getElementById("time");
	element.innerHTML = thetime;
  	}

function popup(w,h,site) {
	x=screen.availWidth/2-w/2;
	y=screen.availHeight/2-h/2;
	var popupWindow=window.open('','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
	popupWindow.document.write(site);
	popupWindow.document.close();
	}

function scratchSearch(){
	sfld = document.getElementById("search");
	sfld.value = null;
	}

