//Buchstaben-Zähler
function textCounter(field, countfield, maxlimit) {
	if (field.value.length > maxlimit) {
		field.value = field.value.substring(0, maxlimit);
	} else {
		countfield.value = maxlimit - field.value.length;
	}
}

function openExt(pUrl) {
	
	pBreite = 980;
	pHoehe = 648;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	window.open(pUrl, 'Hilfe', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=yes');
}

function openExtern(p_Url) {
	
	pBreite = 400;
	pHoehe = 130;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	window.open(p_Url, 'Vote', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=no, status=no, toolbar=no, scrollbars=no');
}

function ferh(p_Url) {
	
	pBreite = 940;
	pHoehe = 700;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = ((screen.height-pHoehe)/2)-100;
	window.open(p_Url, 'Rlct', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+',toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');
}