function Review(pic,descr,num) {
wnd = window.open("",'photo' + num,'width=550,height=450,top=0');
wnd.document.open();
wnd.document.write("<html><head><META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=windows-1251'><title>" + descr + "</title><script language='JavaScript'>function resizeOuterTo(w,h) { if (parseInt(navigator.appVersion)>3) {   if (navigator.appName=='Netscape') {    top.outerWidth=w+8;    top.outerHeight=h+29;   }   else   {   top.resizeTo(400,500);   wd = 400-document.body.clientWidth;    hd = 500-document.body.clientHeight;    top.resizeTo(w+wd,h+hd);   } }}function init(){  document.body.style.overflow = 'hidden';  var ww = document.images['LargeImg'].width;  var hh = document.images['LargeImg'].height;  if (hh>620) {    hh = 620;   document.body.style.overflow = 'auto';  }  if (ww>740) {    ww = 740;    document.body.style.overflow = 'auto';  }  resizeOuterTo(ww,hh);}</script></head>");
wnd.document.write("<body marginheight='0' marginwidth='0' topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0' onLoad='init();' bgcolor='white'>");
wnd.document.write("<img name='LargeImg' src='" + pic + "' alt='' border='0'/></body></html>");
wnd.document.close();
wnd.focus();
}