function Frage() {
  if( document.Antwort.pass.value != "" &&  document.Antwort.pass.value != null)
  {
  document.Antwort.pass.value=document.Antwort.pass.value.toLowerCase();
  if( document.Antwort.pass.value == "tupper")
    {
    alert("YEAAAH ... Richtig!!!");
    window.location="final_tail.php";
    }
  else
    alert("Dies war leider die falsche Antwort");
  }
}
