//Versteckten Text aufklappenfunction toggledisplay (id, indicator){ 	if (document.getElementById) { 		var obj = document.getElementById(id);		var pic = document.getElementsByName(indicator);		obj.style.display = (obj.style.display=='block'?'none':'block');		pic[0].src = (obj.style.display=='block'?'/images/hide.gif':'/images/show.gif');	} else if(document.all) { // IE		id.style.display = (id.style.display=='block'?'none':'block');		indicator.src = (id.style.display=='block'?'/images/hide.gif':'/images/show.gif');	} else if (document.layers) { // Netscape 4.x		document.id.style.display = (document.id.style.display=='block'?'none':'block');		document.indicator.src = (document.id.style.display=='block'?'/images/hide.gif':'/images/show.gif');	}}function displayPic(Pic,Titel,picX,picY) {	xsize = picX	ysize = picY	ScreenWidth = screen.width;	ScreenHeight = screen.height;	xpos = (ScreenWidth/2)-(xsize/2);	ypos = (ScreenHeight/2)-(ysize/2);	ypos = (ypos/5)*3;	NewWindow=window.open("","Bild","height="+ysize+",width="+xsize+",scrollbars=no,resizable=yes,status=no,top="+ypos+",left="+xpos+"");	NewWindow.document.write ("<html><head><title>"+Titel+"</title></head>");	NewWindow.document.write ("<body bgcolor='#ffffff' onload='focus()' style=\"margin:10px 0 10px 0;padding:0;\">");	NewWindow.document.write ("<table border='0' bgcolor='#ffffff' cellpadding='0' cellspacing='0' width='100%' height='100%'><tr><td style=\"text-align:center;\">");	NewWindow.document.write ("<img src='");	NewWindow.document.write (Pic);	NewWindow.document.write ("'");	NewWindow.document.write ("</td>");	NewWindow.document.write ("</tr></table>");	NewWindow.document.write ("</body></html>");	NewWindow.document.close();}
