
function display(element) {

	element2 = 'auswahl';
	if (document.getElementById(element2).style.display == 'none') {
	display_value = 'block'; }
	else {
	display_value = 'none'; }
	document.getElementById(element2).style.display = display_value;
	
	
	if (document.getElementById(element).style.display == 'none') {
	display_value = 'block'; }
	else {
	display_value = 'none'; }
	document.getElementById(element).style.display = display_value;
}

function display_start(element) {
	if (document.getElementById(element).style.display == 'none') {
	display_value = 'block'; }
	else {
	display_value = 'none'; }
	document.getElementById(element).style.display = display_value;
}
