function popup(picturename,picturetitle,width,height)
{
	var sY = (screen.height - height)/2;
	var sX = (screen.width - width)/2;
	
	picturewindow = window.open('','Fenster','width=' + width + ',height=' + height + ',top=' + sY + ',left=' + sX + ',resizable=no');
	picturewindow.document.write ('<BODY topmargin="0" leftmargin="0" onMouseDown="Javascript:self.close()">')
	picturewindow.document.write ('<IMG SRC="' + picturename + '" HSPACE=0 VSPACE=0 BORDER=0 name="Bild" onMouseDown="Javascript:self.close()" style="cursor: hand;" title="[klikkre az ablak bezáródik]">');
	picturewindow.document.write ('</BODY>')
	picturewindow.document.title = picturetitle;
}

