function toggle(id,start,gesamt){
 for (var i=start;i<=gesamt;i++) {
 	var aktuImg = 'layer' + i;
 	if (aktuImg!=id) {
		var img = 'img_' + aktuImg;
		document.getElementById(aktuImg).style.display = 'none';
  		document.getElementById(img).src = '/standards/bilder/plus.gif';
	}
 }
 var img = 'img_' + id;
 if(document.getElementById(id).style.display == 'block') {
  document.getElementById(id).style.display = 'none';
  document.getElementById(img).src = '/standards/bilder/plus.gif';
 } else {
  document.getElementById(id).style.display = 'block';
  document.getElementById(img).src = '/standards/bilder/minus.gif';
 }
}


