function opuszoom(pJpg,pTitle,pWidth,pHeight){
popupWindow = window.open("","","height=" + (pHeight+16) + ",width=" + (pWidth+16) + ",scrollbars=no,screenX=0,left=0,screenY=0,top=0")
popupWindow.document.clear();	
popupWindow.document.write("<html><head><title>" + pTitle + "</title></head>" + "<body onBlur='self.close()' leftmargin='9' topmargin='9'>" + "<img src='" + pJpg + "' border='0'>" + "</body></html>")
popupWindow.document.close();}
