<!-- Ablauf V.0.16 -->
function beenden()
{
  parent.window.close()
}

function warum()
{ 
  if (parent.AntwortWarum)
  {
    parent.AntwortWarum = false

    parent.frames[1].location.href="warum.htm"
  }
}

function vorherigefrage()
{
  if ( parent.Letzte != 151 )
  {
    parent.Nochmal = true
    parent.Nexte = parent.Letzte

    parent.frames[0].location.href="obenlinks.htm"
    parent.frames[1].location.href="fragen.htm"
    parent.frames[2].location.href="grafik.htm"
    parent.frames[3].location.href="obenrechts.htm"
    parent.frames[4].location.href="ablauf.htm"
    parent.frames[5].location.href="punkte.htm"
  }
}

function impressum()
{
  parent.frames[2].location.href="impressum.htm"
}

function start()
{
  document.write('<p style="font-family:Comic Sans MS; font-size:16px; color:#006946">')
  document.write("Modus = " + parent.Modus)
  document.write('<br>')
  document.write("Bereich = " + parent.Bereich)
  document.write('<br><br></p>')

  document.write('<p style="font-family:Comic Sans MS; font-size:16px; color:black">')
  document.write('<a href="javascript:warum()">' + "Warum" + '<br><br>')
  document.write('<a href="javascript:vorherigefrage()">' + "Eine Frage zur&uuml;ck" + '<br><br>')
  document.write('<a href="javascript:beenden()">' + "Quiz beenden" + '<br></p>')

  document.write('<p style="font-family:Comic Sans MS; font-size:10px; color:black">')
  document.write('<a href="javascript:impressum()">' + "Impressum" + '</p>')
}

