function showFoto(x,y,file,comment,close)
{
	var w = screen.availWidth||screen.width
	var h = screen.availHeight||screen.height
	var move_win = 0
	wx = x + 1; wy = y + 1;
	h -= 0; w -= 0;
	if (wx>w) { wx = w; move_win=1 }
	if (wy>h) { wy = h; move_win=1 }
	if (!comment) {	comment = '' }
	file = img+""+file
	var data_close = ""
	if (close==1)
		data_close ="onClick='window.close()' style='cursor: hand;'"
	var data = "<HTML><head><meta http-equiv=content-type content=text/html; charset=iso-8859-2><title>"+comment+"</title><LINK rel='StyleSheet' href='../lilien.css' type='text/css'></head><BODY><DIV align=center><IMG SRC='"+file+"' width="+x+" height="+y+" border=0 "+data_close+" alt='Mit dem Klicken schliessen Sie das Bild' title='Mit dem Klicken schliessen Sie das Bild'></DIV></BODY></HTML>"
	var aa = window.open("", 'photo', 'resizable,scrollbars=0,menubar=0,width=' + wx + ',height=' + wy);
	if (move_win==1) { aa.moveTo(0,0) }
	aa.document.write(data)
	aa.document.close();
	aa.focus();
}
