function zoom(pic){
img=new Image();
img.src=pic;
prm='width='+img.width+',height='+img.height+',top=0,left=0,toolbar=0,status=0,menubar=0,location=0,scrollbars=0,resizable=0';
win=window.open('',img.width*img.height,prm);
win.document.open();
win.document.write("<body topmargin=0 leftmargin=0><img src="+pic+"></body>");
win.document.close();
return false;}
