function OpenImage (imageName, imageWidth, imageHeight) {
	var newWindow = window.open("","newWindow","titlebar=0, fullscreen=0, toolbar=0, status=0, menubar=0, scrollbars=0, resizable=0, directories=0, location=0, width=640, height=480");
	newWindow.document.open();
	newWindow.document.write('<html>\n<title>Slovenská lekárska komora</title>\n<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">\n');
	newWindow.document.write('<table width="100%" height="100%" cellpadding="0" cellspacing="0">\n<tr>\n<td align="center" valign="middle"><img src="http://www.lekom.sk/files/media/'+imageName+'" alt="FOTOGRAFIA" onclick="window.close()"></td>\n</tr>\n</table>\n');
	newWindow.document.write('</body>\n</html>\n');
	newWindow.document.close();
	newWindow.focus();
}

