// www.web-toolbox.net W. Jansen

var zufallszahl01;
var zufallszahl02;

function Schreiben01() {
	var now = new Date();
	var sec = now.getSeconds();
	var min = now.getMinutes();
	zufallszahl01 = sec % 10;
	zufallszahl01 +=1;
	zufallszahl02 = (min + sec) % 10;
	zufallszahl02 +=1;
	document.write(zufallszahl01 + " + " + zufallszahl02 + " = ");
}

function Fragen01() {
	document.write('<input class="kurz" onFocus="this.style.background=\'#FFFFFF\';" type="text" id="antwort01" maxlength="3" size="3" value="">');
return
}
