// JavaScript Document

function toggleList(x){
	/*var anzahl = document.para.anzahl.value;*/
	var obj = document.getElementById('item_' + x);

	if(obj.style.display == "none"){
	obj.style.display = "";
	}
	else{
		obj.style.display = "none";
	}
	
}
