function openimg(filename,width,height) {
 OpenImg = window.open("","OpenImg","toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height);
 OpenImg.document.writeln("<html>");
 OpenImg.document.writeln("<head>");
 OpenImg.document.writeln("<title>Аура-Витраж - изготовление художественных витражей</title>");
 OpenImg.document.writeln("</head>");
 OpenImg.document.writeln("<body bgcolor=\"#000000\" topmargin=\"0\" leftmargin=\"0\">");
 OpenImg.document.writeln("<img src=\"" + filename + "\" width=\"" + width + "\" height=\"" + height + "\">");
 OpenImg.document.writeln("</body>");
 OpenImg.document.writeln("</html>");
 OpenImg.document.close();
 OpenImg.focus();
}
