// change box-infodienst-login content on the fly
function changeContent(aktive, item) {
	activeItem = document.getElementById(aktive).style.display = 'none';
	newItem = document.getElementById(item).style.display = 'block';
}

