var fensteroffen=0
function zeigebild(bild)
	{
	
	if (fensteroffen == 1 && Infofenster.closed == false)
	{
	Infofenster.focus();
	Infofenster.location.href='/bildanzeige.asp?bild=' + bild;
	}
	else
	Infofenster=window.open('/bildanzeige.asp?bild=' + bild, 'Bild', 'toolbar=no,location=no,scrollbars=yes,resizable=yes,titlebar=no,width=640,height=410,top=50,left=50');
	Infofenster.focus();
	fensteroffen=1
	}
