function moveElements(source, destination, elements)
{
	numOfElements = document.getElementById(source).length;
	for(i=numOfElements-1; i>=0; i--)
	{
		if(elements == "all" || document.getElementById(source).options[i].selected)
		{
			NeuerEintrag = new Option(document.getElementById(source).options[i].text, document.getElementById(source).options[i].value, false, true);
			document.getElementById(destination).options[document.getElementById(destination).length] = NeuerEintrag;
			document.getElementById(source).options[i] = null;
		}
	}
}

/*
function showBericht(pfad, liga, typ, spiel, tabelle, teams, saison)
{
	if(saison==undefined)
		saison = "";
	window.open(pfad+"berichte.php?liga="+liga+"&typ="+typ+"&id="+spiel+"&saison="+saison, "Spielbericht", "width=600px, height=400px, location=no, scrollbars=yes, resizable=yes");
}
*/

function showBericht(spiel_id, punkt_or_sonst)
{
	window.open("./main_files/bericht.php?spiel_id="+spiel_id+"&punkt_or_sonst="+punkt_or_sonst, "Spielbericht", "width=600px, height=400px, location=no, scrollbars=yes, resizable=yes");
}