  function openFoto(file,w,h) {
  winFoto= open("", "","width="+ w +",height="+ h +",status=no,toolbar=no,menubar=no,resizable=no");
  winFoto.document.open();
  winFoto.document.write("<html><head><title>Фотографии группы \"3-15\"</title></head><body bgcolor=white topmargin=0 leftmargin=0>");
  winFoto.document.write("<a href=\"#none\" onClick=\"javascript:self.close()\" title=\"закрыть\"><img src="+ file +" width="+ w +" height="+ h +" border=0></a>");
  winFoto.document.write("</body></html>");
  winFoto.document.close();
 }
