function openwin(filename)
 {
  nwindow=window.open('','image','toobar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes ,copyhistory=no,width='+650+',height='+500);
  ndoc= nwindow.document;
  ndoc.close();
  ndoc.open();
  text='\n<HTML>';
  text+='<head><title>Увеличенное изображение</title></head>';
  text+='<body leftMargin="0" topMargin="0" rightMargin="0" marginwidth="0" marginheight="0">';
  text+='<table height="100%" width="100%"><tr><td height="100%" width="100%">';
  text+='<center><img src="'+filename+'large'+'.jpg" alt=""></center>';
  text+='</td></tr></table>';
  text+='</body></html>';
  ndoc.write(text);
  nwindow.focus();
  ndoc.close();
  self.nwindow = nwindow;
 }
