<!--

function antwort(punkt_dat, url_dat) {
parent.punkte=parent.punkte+punkt_dat
parent.beantwortet=parent.beantwortet+1
parent.frames[parent.frame_a].location.href=""+url_dat+""
parent.frames[parent.frame_b].location.href="counter.php"
}

function anfang() {
parent.frames[parent.frame_a].location.href="federation_oben.php"
parent.frames[parent.frame_b].location.href="federation_unten.php"
}
function credits() {
parent.frames[parent.frame_a].location.href="credits.php"
parent.frames[parent.frame_b].location.href="federation_unten.php"
}
function neustart() {
parent.frames[parent.frame_a].location.href="borg01.php"
parent.frames[parent.frame_b].location.href="counter.php"
parent.punkte=0
parent.beantwortet=0
}
function anleitung() {
parent.frames[parent.frame_a].location.href="anleitung.php"
parent.frames[parent.frame_b].location.href="federation_unten.php"
}
function auswertung(punkt_dat){
parent.punkte=parent.punkte+punkt_dat
parent.beantwortet=parent.beantwortet+1
if (parent.antworten==parent.beantwortet)
	{
	parent.frames[parent.frame_a].location.href='auswertung.php?score=' + parent.punkte
	parent.frames[parent.frame_b].location.href="auswertung_unten.php"
	}
else
	{
	alert("Betrug ist Inakzeptabel! Wir haben Sie gewarnt. Ihr Verhalten etspricht höchstens dem eines Ferengies!")
	parent.frames[parent.frame_a].location.href="borg01.php"
	parent.frames[parent.frame_b].location.href="counter.php"
	parent.punkte=0
	parent.beantwortet=0
	}
}
//-->