function WOpen(filename,title,comment)
{
str = "width=650,height=670,scrollbars=0,resizable=0,name="+filename;
if (title == "") { title = "Фотографии Александра Новикова." }
if (!comment) {comment = title}
// title = "Фотографии Александра Новикова.";
w = window.open("","photo",str)
w.document.write("<html><head><title>" + title + "</title><link href=images/an.css rel=stylesheet type=text/css></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
w.document.write("<table border=1 width=100% height=100% bgcolor=#CED1D0><tr><td valign=top>");
w.document.write("&nbsp;<div align=center><table border=1 width=620 height=580 bgcolor=#e6e7e8><tr><td align=center>");
w.document.write("<a href=# onClick=window.close();><img src=\""+filename+"\" border=0 alt=\"Закрыть\"></a>");
w.document.write("</tr></table><p>")

w.document.write("<p>" + comment);

w.document.write("</td></tr></table></div>");
w.document.write("</body></html>");
w.document.close();
w.focus();
}
