newWindow = null;
function zwindow(src,w,h,opis){
if(window.screen){ dx=screen.availWidth; dy=screen.availHeight;
}else{ dx=680; dy=510; }
if(newWindow==null || newWindow.closed){
 parms="left="+(dx-w)/2+",top="+(dy-h)/2+",screenX="+(dx-w)/2+",screenY="+(dy-h)/2 +",width="+w+",height="+h+",innerWidth="+w+",innerHeight="+h+","
 +"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no"
 newWindow = window.open('','',parms);
}
newWindow.document.open();
newWindow.document.clear();
newWindow.document.write(
"<html><head><title>"+opis+"</title>\n"
+"</head><BODY bgcolor='white' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>\n"
+"<table valign='middle' height='100%' width='100%'><tr valign='middle' height='100%'><td valign='middle' align='center'>\n"
+"<a href='javascript:window.close()'><img src="+src+" alt=' "+opis+" ' border='0'></a>\n"
+"</td></tr></table></body></html>"
);
newWindow.document.close();
newWindow.focus();
}

