function show_picture (image) {
width = screen.availWidth - 50;
height = screen.availHeight - 50;
picture = window.open('','picture','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,top=25,left=25,width=650,height=650');
picture.document.writeln ("<html><head>");
picture.document.writeln ("<title>" + image + "</title>");
picture.document.writeln ("</head>");
picture.document.writeln ("<body bgcolor=#EFEFEF topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0>");
picture.document.writeln ("<table width=650 height=650 border=0><tr height=650 valign=middle><td width=650 align=center>");
picture.document.writeln ("<a href='#' onclick='self.close()'><img src='images/gallery/" + image + ".jpg' alt = 'Закрыть окно (image: " + image + ")' border=0></a><br><br>");
picture.document.writeln ("<a href='#' onclick='self.close()' style='color: #333333; font-family: arial; font-size: 10px; text-decoration: none'>Закрыть окно</a>");
picture.document.writeln ("</td></tr></table>");
picture.document.writeln ("</body></html>");
}
