function show_image(URL,width,height)
{
    config='left=100, top=100, width=' + (width+25) + ',height=' + (height+25) + ',innerheight=' + height + ',innerwidth=' + width + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
    wnd = window.open('',"ImageWindow",config)
    var text='<html><head>';
    text += '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">';
    text += '<title>Gabinet Chirurgii Plastycznej - dr n. med. Irena Petruk</title>';
    text += '</head>';
    text += '<body bgcolor="white" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">';
    text += '<div style="text-align: center; margin-top: 10px"><a href="#" onclick="javascript:self.close();"><img src='+ URL +' border="0" alt=""></a></div>';
    text += '</body></html>';
    wnd.document.write(text);
    wnd.focus();
}
