// Central JavaScripts for Jugendpresse Deutschland e.V.

// Switches the Div-Container: block, none
function sw (id) {
	if (document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = 'block';
 	} else {
 		document.getElementById(id).style.display = 'none';
 	}
}