function showImage(w,h,url)
{
    popupwindow=window.open('','obrazek','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=auto,status=no,width='+w+',height='+h);
    popupwindow.document.clear();
    popupwindow.document.write('<html><head><title>Zdjecie</title></head><body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 bgcolor="white">');
    popupwindow.document.write('<img src="'+url+'">');
    popupwindow.document.close();
}

function showHTML(w,h,url)
{
    popupwindow =window.open(url,'','location=no,toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,status=no,width='+w+',height='+h);
}

