function tqSchattauerCme_OpenPaymentPopup( form ) {
	var paymentPopup;
	var ret = false;

	paymentPopup = window.open("", "paymentPopup", "width=600,height=400,status=yes,scrollbars=yes,resizable=yes");

	if( paymentPopup ) {
		form.target = "paymentPopup";
		paymentPopup.focus();
	 	ret = true;
 	}

 	return ret;
}

function tqSchattauerCme_ExamSubmit( action ) {
	var form = document.getElementById('tqSchattauerExamForm');
	form.elements["tx_tqschattauercme[submitaction]"].value = action;
	tqFormSubmitForm(form);
}


function tqSchattauerCme_ExamChooseAnswer(answerId) {
	var element = document.getElementById("answer_"+answerId);

	if(element) {
		element.checked = true;
	}
}
