
// PopupFenster
function printPopup (url) {
	print_popup = window.open(url, "print_popup", "width=698,height=650,scrollbars=yes,menubar=no,toolbar=no,");
 	print_popup.focus();
}

// Formular MaxLength
function formMaxlenght(actValue) {
	maxLength = 500;
	ausgabe = document.getElementById('divoutput');
	input = document.getElementById('tx_aahbookplus_pi1_form_text');
	newValue = actValue.substr(0, maxLength);
	input.value = newValue;
	actTextLength = input.value.length;
	remainTextLength = maxLength - actTextLength
	ausgabe.innerHTML = "(Noch "+remainTextLength+" Zeichen.)";
}