newWindow=null;
function NoweOkno(url, nazwa, w, h) {
newWindow = window.open(url,"inset",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+w+',height='+h);
newWindow.document.open();
newWindow.document.write(
"<html>\n"
+"<head>\n"
+"</head>\n"
+"<title>"+nazwa+"</title>\n"
+'<body topmargin="0" leftmargin="0" bgcolor="#808080" oncontextmenu="return false" onselectstart="return false">\n'
+"<img src="+url+">\n"
+"</body>\n"
+"</html>"
);
}
