<!--
function checkAGB() {
	if (!document.buchung.agb.checked) {
		if (document.buchung.lang.value=="de") {
			alert("Sie müssen die allgemeinen Geschäftsbedingungen akzeptieren!");
		}
		else {
			alert("You have to accept the terms and conditions!");
		}
		return false;
	}
	return true;
}
-->
