<!--
<!--
var ans = new Array;
var done = new Array;
var score = 0;

ans[1] = "c";
ans[2] = "a";
ans[3] = "b";
ans[4] = "b";
ans[5] = "d";
ans[6] = "c";
ans[7] = "c";
ans[8] = "c";
ans[9] = "d";
ans[10] = "a";

function Engine(question, answer) {

	if (answer != ans[question]) {
		if (!done[question]) {
			done[question] = -1;
			alert("Zle!\n\Masz teraz punktow: " + score);
		    	}
		else {
			alert("Juz to odpowiedziales!");
			}
		}
	else {
		if (!done[question]) {
			done[question] = -1;
			score++;
			alert("Poprawna odpowiedz!\n\Masz teraz punktow: " + score);
		    	}
		else {		
			alert("Juz to odpowiedziales!");
			}
		}
}
		
function NextLevel () {
	if (score > 10) {
		alert("Oszukujesz!");
		}
	if (score >= 7 && score <= 11) {
		{
		window.location.href = "\GameQuiz2.htm";}
		}
	else {
		alert("Zakaz wstepu! Potrzebujesz co najmniej 7 punktow zeby przejsc.")
		}
}

function NextLevel2 () {
	if (score > 10) {
		alert("Oszukujesz!");
		}
	if (score >= 7 && score <= 11) {
		{
		window.location.href = "\quiz1.html";}
		}
	else {
		alert("Zakaz wstepu! Potrzebujesz co najmniej 7 punktow zeby przejsc.")
		}
}

function NextLevel3 () {
	if (score > 10) {
		alert("Oszukujesz!");
		}
	if (score >= 7 && score <= 11) {
		{
		window.location.href = "\kwiz.html";}
		}
	else {
		alert("Zakaz wstepu! Potrzebujesz co najmniej 7 punktow zeby przejsc.")
		}
}

//-->

//  End -->