// JavaScript Document
var getal;
var p=7; // periode, om de x seconden.
var t=p*Math.floor(Math.random()*6);
function knop()
{
	t++;
	if (t <= p) {getal = todayDateTimeLong("nl")}
	if ((t > p) && (t <= 2*p)) {getal = todayDateTimeLong("fr")}
	if ((t > 2*p) && (t <= 3*p)) {getal = todayDateTimeLong("en")}
	if ((t > 3*p) && (t <= 4*p)) {getal = todayDateTimeLong("du")}
	if ((t > 4*p) && (t <= 5*p)) {getal = todayDateTimeLong("es")}
	if ((t > 5*p) && (t <= 6*p)) {getal = todayDateTimeLong("it")}
	document.result.line1.value = getal;
	if(t==6*p){t=0;};
	timerID = setTimeout("knop()",1000);
}

//Gewijzigde versies die in omloop zijn kunnen onbetrouwbaar zijn. PSWEBDESIGN kan niet worden verantwoordelijk gesteld worden voor eventuele schade voortvloeiend uit 
