function show_picture(img_name, width, height) {
	var win = window.open('', 'gallery_preview', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width='+width+',height='+height+',resizable=no');
	win.document.write('<html><head><title>Галерея</title><link rel="stylesheet" type="text/css" href="style.css"></head><body>');
	win.document.write('<img src="pic/gallery/' + img_name + '">');
	win.document.write('</body></html>');
  win.document.close();
	return false;
}

