// JavaScript Document
function mover_result(itm) {
	switch(itm) {
		case 1:
			document.getElementById("erg_1a").style.background="#E4C533";
			document.getElementById("erg_1b").style.background="#E4C533";
			document.getElementById("erg_1c").style.background="#E4C533";
			break;
		case 2:
			document.getElementById("erg_2a").style.background="#E4C533";
			document.getElementById("erg_2b").style.background="#E4C533";
			document.getElementById("erg_2c").style.background="#E4C533";
			break;
	}
}

function mout_result(itm, col) {
	switch(itm) {
		case 1:
			document.getElementById("erg_1a").style.background=col;
			document.getElementById("erg_1b").style.background=col;
			document.getElementById("erg_1c").style.background=col;
			break;
		case 2:
			document.getElementById("erg_2a").style.background=col;
			document.getElementById("erg_2b").style.background=col;
			document.getElementById("erg_2c").style.background=col;
			break;
	}
			
}


function go_results() {
	parent.location.href="html/fb_spielberichte.php"; }
