function kepek(url, w, h)
    {
    disp = window.open("","pop","height=" + h + ",width=" + w + ",left=" + ((screen.width - w)/2) + ",top=" + ((screen.height - h)/2 - 20) + "");
    content = '<html><head>';
    content += '<title>használt notebook</title>';
    content += '</head>';
    content += '<body bgcolor="#CBCBCB" text="#666666" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="NO" onblur="self.close()">';
    content += '<p align="center"><img src="' + url + '" height="' + h + '" width="' + w + '"></p>';
    content += '</body></html>';
    disp.document.write(content);
    disp.document.close();
    }

