function showPicture(imgName,imgHeight,imgWidth) {
if (imgHeight>window.screen.height-100){imgHeight=window.screen.height-100}
if (imgWidth>window.screen.width){imgHeight=window.screen.width}
	popup = window.open( '','_blank','Height=' + imgHeight + ',Width=' + imgWidth + ',scrollbars=yes,resizable=yes,status=no,left=0,top=0');
    popup.document.write('<html><head><title>Kutasi László</title><style type="text/css">body{background: #D2AB75;margin: 0;padding: 0;}img{border:solid 2px black;}</style></head><body>');
    popup.document.write('<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">');
    popup.document.write('<tr align=\"center\" valign=\"middle\"><td>');
    popup.document.write('<img src=\"'  + imgName + '\">');
    popup.document.write('</td></tr></table></body></html>');
    popup.document.close()
}
