function openPicture(src, alt, width, height)
{
var img = "<img src='" + src + "' height='" + height + "' width='" + width + "' alt='" + alt + "'>";
var body = "<html>\n<head>\n<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>\n<title>" + alt + "</title>\n</head>\n\n<body leftmargin='0' topmargin='0' marginheight='0' marginwidth='0' onload='focus()' onclick='window.close()'>\n" + img + "\n</body>\n</html>";
var params = "width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,scrollbars=no";
PictureWindow = open("", "_blank", params);
PictureWindow.document.write(body);
PictureWindow.document.close();
}
