﻿function keppopupba(url, w, h)
{
var content = '<HTML><head>';
content += '<TITLE>Kepnezo</TITLE>';
content += '</HEAD>';
content += '<BODY BGCOLOR="#CBCBCB" ONCLICK="self.close()" style="padding:0px; margin:0px;">';
content += '<div ALIGN="CENTER"><img src="' + url + '" height="' + h + '" width="' + w + '"></div>';
content += '</BODY></HTML>';
disp = window.open("","pop",'width=' + w + ',height=' + h + ",menubar=no,toolbar=no,resizable=no,left=0,top=0,screenX=0,screenY=0,scrollbars=no");
disp.document.write(content);
disp.document.close();
}