function displayActiveBoxes(boxRowNrAct, boxRowsCount) {

	firstFillableBox = 0;
	
	for (var boxRowNr = 1; boxRowNr <= boxRowsCount; boxRowNr++) {
		nameb  = 'deefn' + boxRowNr.toString(10);
		lnameb = 'deeln' + boxRowNr.toString(10);
		emailb  = 'deeem' + boxRowNr.toString(10);
		inputb  = 'deeim' + boxRowNr.toString(10);
		tobox = 'dissvictim_' + boxRowNr.toString(10);

		// Box noch zu f�llen?
		if (
			document.getElementById(emailb).value == "" 
		) {
			if (firstFillableBox == 0) {
				document.getElementById(tobox).style.display = 'block'; // Kann halb ausgef�llt sein (dann in jedem Fall schon sichtbar), kann aber auch leer sein
				firstFillableBox = boxRowNr;
			}
		}
	
	}
}

