
   function open_photo_window(source,width,height,name){ 
 var photo;

 photo=window.open("","","scrollbars=no,status=no,width="+width+",height="+height+",top=0,left=0"); 
 photo.document.open(); 
 photo.document.writeln("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'>"); 
 photo.document.writeln("<HTML>"); 
 photo.document.writeln("  <HEAD>");
 photo.document.writeln("    <TITLE>Фото - " +name+"</TITLE>");
 photo.document.writeln("    <META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=windows-1251'>"); 
 photo.document.writeln("  </HEAD>"); 
 photo.document.writeln("<BODY Style='margin:0'>"); 
 photo.document.writeln("<center>"); 
 photo.document.writeln(" <IMG SRC='" +source+"' onClick='window.close()'"); 
 photo.document.writeln("  WIDTH='"+width+"' HEIGHT='"+height+"' ALT='Закрыть окно'>");
 photo.document.writeln("</BODY></HTML>"); 
 photo.document.close(); 
}