// JavaScript Document
 function fenster(Url,Breite,Hoehe) 
{
window.open(Url,'','width='+Breite+',height='+Hoehe+',left='+((screen.width-Breite)/2)+',top='+((screen.height-Hoehe)/2)+',scrollbars=yes') 
}

function toggleKlappe( kid )
 {
 	bild = new Image();
 	if (document.getElementById(kid).style.display == 'inline')
 	  {
 	  	document.getElementById(kid).style.display = 'none';
 	  }
 	  else
 	  {
 	  	document.getElementById(kid).style.display = 'inline';
 	  }
 }
