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=\'#FFF\';" onBlur="this.style.backgroundColor=\'#FEFDE7\';" type="text" id="antwort01" maxlength="3" value="">');
return
}

function Kontrolle01() {
var Ergebnis01 = zufallszahl01 + zufallszahl02;
var Eintrag01 = document.getElementById("antwort01").value;

  if(Ergebnis01 != Eintrag01)
  {
  alert("The result is not correctly ! The message can not be send.");
  document.getElementById("antwort01").value = "";
  document.getElementById("antwort01").focus();
  return false;
  }
}