function openImageWindow(imageName,imageWidth,imageHeight) 
 {
	image_height = parseInt(imageHeight) + 0;
	var winH = (screen.height / 2) - (image_height / 2);
	var winW = (screen.width / 2) - (imageWidth / 2);
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+image_height+",top="+winH+",left="+winW);
	newWindow.document.open();
	newWindow.document.write('<HTML><HEAD><TITLE>Olga Dekojová - fotografie</TITLE></HEAD><BODY bgcolor="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0">'); 
	newWindow.document.write('<a href="#" OnClick="window.close();"><IMG SRC="'+imageName+'" WIDTH="'+imageWidth+'" HEIGHT="'+imageHeight+'" border="0"></a>');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
 }
