function openPicture(src, alt, width, height)
{
var img = "<img src=" + src + " height=" + height + " width=" + width + " alt='Щёлкните для закрытия окна.'>";
var body = "<html>\n<head>\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,scrollbar=no";
PictureWindow = open("", "_blank", params);
PictureWindow.document.write(body);
PictureWindow.document.close();
return false;
}
