function zeigwarten()
{document.getElementById('wartebild').style.display="block";}

function poppy()
{win=window.open('spielanleitung.htm','_blank','resizable=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,toolbar=0,width=500,height=400');}

function pruefen(formularX, feldY) {
		if (document.forms[formularX].elements[feldY].value == "")
		{
		alert ('Du hast nicht alle Felder ausgefüllt!');
		document.forms[formularX].elements[feldY].focus ();
		return false;
		}
		return true;
}	