	// js_showIt():
	// Can be used to blend in and out items
	// id -> id of the item
	// status -> show (1), dont show (0)
	
	function js_showIt(id, status){
		var button_vis = '<a href="JAVASCRIPT: js_showIt(\'' + id + '\', \'1\');"><img src="img/login_spoiler_auf_v2.png" alt="Einblenden" title="Kategorie einblenden" /></a>';
		var button_invis = '<a href="JAVASCRIPT: js_showIt(\'' + id + '\', \'0\');"><img src="img/login_spoiler_zu_v2.png" alt="Ausblenden" title="Kategorie ausblenden" /></a>';
		
		if(status != 'undefined' && status != null){
			if(status == '1'){
				showIt = 1;
			} else {
				showIt = 0;
			}
		}
		if(showIt == '0'){
			display = "none";
			button = button_vis;
		} else {
			display = "block";
			button = button_invis;
		}
		
		if(document.getElementById(id) != null){
			document.getElementById(id).style.display = display;
			document.getElementById('button_show_' + id).innerHTML = button;
		}
		
	}

