function show_details (id, anzahl, nuranzeigen)
{
  	if(anzahl<1) {
		anzahl = 1;
	}
	if(!nuranzeigen) {
		nuranzeigen = false;
	}
	if (document.getElementById(id+"_1").style.display == 'none' || nuranzeigen)
	{
		for(var i=1; i<=anzahl; i++) {
			document.getElementById(id+"_"+i).style.display = "";
		}
	}
	else
	{
		for(var i=1; i<=anzahl; i++) {
			document.getElementById(id+"_"+i).style.display = "none";
		}
	}
}
