function big_picture(folder, name, title)
{ 
var OpenWindow= open("", "bigpicture", "height=650,width=900,toolbar=no,menubar=no,location=no,status=no,resizable=yes,scrollbars=yes");
OpenWindow.document.open();
OpenWindow.document.write("<html>");
OpenWindow.document.write("<head>");
OpenWindow.document.write("<title>" + title + "</title>");
OpenWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"style/style.css\" />");
OpenWindow.document.write("<META http-equiv='Content-Type' content='text/html; charset=windows-1251' />");
OpenWindow.document.write("</head>");
OpenWindow.document.write("<body>");
OpenWindow.document.write("<a href='javascript:window.close();' onClick='javascript:window.close();'><img src='images/" + folder +"/" + name +".jpg' alt='Щелкните на картинку, чтобы закрыть окно.' border='0'>");
OpenWindow.document.write("<br />Закрыть окно</a>");
OpenWindow.document.write("</body>");
OpenWindow.document.write("</html>");
OpenWindow.document.close();
}

