function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;

	} else {
		window.onload = function() {
			if (oldonload) {
				oldonload();
			}
			func();
		}
	}
}


function oeffneFenster(seitenName,instanzName,fensterBreite,fensterHoehe) 
{
   breiteBildschirm = screen.availWidth;
   hoeheBildschirm = screen.availHeight - 20;
   randLinks = breiteBildschirm/2-(fensterBreite/2);
   randOben = hoeheBildschirm/2-(fensterHoehe/2);
   fensterParameter = "top="+randOben+",left="+randLinks+",width="+fensterBreite+",height="+fensterHoehe+",scrollbars=yes,toolbar=no,status=no,resizeable=no,location=no";
   satellitenFenster = window.open(seitenName,instanzName,fensterParameter);
   satellitenFenster.focus();
}

// q: Index aktueller Frage, a: Antwort (0-2)
function quiz(q,a) {	
	document.getElementById("q").value=q;
	document.getElementById("a").value=a;	
	document.forms[0].submit();
}
function redirectQuiz() {
	document.getElementById("q").value="";
	document.getElementById("a").value="";
	document.forms[0].submit();
}


