imgWindow=false;
function showImage(imgURL, breite, hoehe)
{
	if(imgWindow&&imgWindow.closed==false)
    imgWindow.close()
	var pleft=screen.width/2-breite/2+60;
	var ptop=screen.height/2-hoehe/2;	
	
	windowOptions="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,left="+ pleft +",top="+ ptop +"";
	imgWindow=window.open("", "", windowOptions + ',width=' + breite + ',height=' + hoehe);
	imgWindow.focus();
	imgWindow.document.open();
	with(imgWindow)
	{
		document.write("<html><head>");
		document.write("<title>ENNI Ballonfestival</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"self.close();\" src=\""+ imgURL +"\" title=\"ENNI Ballonfestival\">");
		document.write("</body></html>");
	}
}
