
function _open1(url, w, h, title) {
    var feats = "resizable=no, scrollbars=no; center=yes; ";
    if (w != -1) feats += "width=" + w + "px; ";
    if (h != -1) feats += "height=" + h + "px; ";
    var w = window.open("about:blank", '_blank', feats);
    title = title || "Картинка";
    var s = "";
    s += "<html>";
    s += "<head>";
    s += "<title>МонтажПромСтрой | " + title + "</title>"; 
    s += "</head>"; 
    s += "<body style='margin:0px 0px 0px 0px;'>";
    s += "<a href='#' onclick='window.close();'>"; 
    s += "<img alt='Click to close' border='0' src='" + url + "'>";
    s += "</a>"; 
    s += "</body>"; 
    s += "</html>";
    w.document.write(s);
    w.document.title = w.document.clientWidth + " " + w.docuent.clientHeight; 
    window.event.returnValue = false; 
    return false; 
}

