function popup(imgURL, windowNAME) {   
var popupwin
window.onerror = null;
		popupwin = open('', '', 'top=20, left=300, toolbar=no,resizable=no,status=no,scrollbars=no,menubar=no,location=no, width=1, height=1'); 
		 popupwin.document.open("text/html", "replace");
		 popupwin.document.write("<html><head><title>"+windowNAME+"</title><script language='javascript1.2'>function s() {tWidth = document.images['kep'].width + 10; tHeight = document.images['kep'].height + 29; window.resizeTo(tWidth,tHeight); }</script><style type='text/css'>body {background-color: #ffffff; border: 0px solid; margin: 1px; overflow: hidden;}</style></head><body onBlur='self.close()'><img src='"+imgURL+"' border='0' name='kep' onload='javascript:s();' onClick='self.close();' alt='Klikk a bezáráshoz'></body></html>");		 			 
         popupwin.document.close();
         popupwin.focus()	 
}