function Gfx(pic,x,y)
{
    var s='<html><head><TITLE>Pobieranie obrazka...</TITLE></head>\n';
    s=s+'<body BGCOLOR="#000000" MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 LEFTMARGIN=0>\n';
    s=s+'<style>html, body { height: 100%; } div {height: 100%; } </style>';
    s=s+'<div style="text-align: center;"><A HREF="javascript:close()"><IMG align="center" ALT="Kliknij aby zamknac okno" BORDER=0 SRC="'+pic+'"></A></div>\n';
    s=s+'</body></html>';

    var f = null;
    x = x + 8;
    y = y + 8;
    f = window.open('','','width='+x+',height='+y+',left='+parseInt((window.screen.width - x) / 2)+',top='+parseInt((window.screen.height - y) / 2)+',resizable=0,directories=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0');
    if(f != null) {
        if(f.opener == null) {
          f.opener = self
        }
        f.document.clear();
        f.document.write(s);
        f.document.close();
    }
}
function validateForm(AForm)
{
    if (!AForm.akceptuje.checked) {
        alert("Musisz zaakceptowaĉ regulamin!");
        return false;
    } else {
        return true;
    }
}
