function checkGBInput()
{

gcName = window.document.frmGB.txtName.value

alert("test");
alert("window.document.frmGB.txtName.value: " + window.document.frmGB.txtName.value);

	If (gcName == "")
		{		
			alert("Bitte gebt euren Namen ein!");
			return;

		}


}

