<!--
function zoom_pic(pic, W, H) {
PreView = window.open("pic", "zoom_pic", "toolbar=0,left=200,top=100,location=0,status=0,menubar=0,scrollbars=0,width="+(W+40)+",height="+(H+40)+",resizable=0");
PreView.document.open();
PreView.document.write("<HTML><HEAD><TITLE>bioArcus - Zdjęcia</TITLE>");
PreView.document.write("<STYLE>img { border: solid 1px dimgray; }</STYLE></HEAD><BODY BGCOLOR=d8d8d8 LEFTMARGIN=20 TOPMARGIN=20>");
PreView.document.write("<a href='javascript:self.close();'><IMG BORDER=0 SRC='" + pic + "' WIDTH='" + W + "' HEIGHT='" + H + "'></a>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
PreView.focus();

var message="Wszelkie prawa zastrzeżone (c) bioArcus";
function click(e) {
if (PreView.document.all) {
if (PreView.event.button == 2) {
PreView.alert(message);
return false;
}
}
if (PreView.document.layers) {
if (e.which == 3) {
PreView.alert(message);
return false;
}
}
}
if (PreView.document.layers) {
PreView.document.captureEvents(Event.MOUSEDOWN);
}
PreView.document.onmousedown=click;
    }
//-->
