<!--
var Bildfenster = null;
function zeigeBild(url, Breite, Hoehe, Titel){
	if (!Bildfenster || Bildfenster.closed){
		Hoehe = Hoehe + 5;
		var X = (screen.width - Breite) / 2;
		var Y = (screen.height - Hoehe) / 2;
		Bildfenster = window.open('','Bildfenster',"toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+Breite+",height="+Hoehe+",screenX="+X+",screenY="+Y+",left="+X+",top="+Y);
		Bildfenster.document.open();
		Bildfenster.document.write('<html><head><meta http-equiv="imagetoolbar" content="no"><title>'+Titel+'</title><link href="favicon.ico" rel="shortcut icon"><link href="styles/norm.css" rel="stylesheet" type="text/css"></head><body onselectstart="return false" ondragstart="return false" oncontextmenu="return false" contextmenu="return false"><a href="" onclick="javascript:self.close()"><img src="'+url+'" hspace="0" vspace="0" border="0"></a></body></html>');
		Bildfenster.document.close()
		Bildfenster.focus();
	}
	else{
		Bildfenster.focus();
	}
}
-->



