function newWin(url, w, h) {
    window.open(url, "_blank", "resizable=no,scrollbars=yes,location=no,status=yes,width=" + w + ",height=" + h);
}

function Zoom(url, w, h, mess) {
    var ww = w + 0;
    var hh = h + 0;
    Start = "<?xml version='1.0' encoding='windows-1251'?><!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='content-type' content='text/html; charset=windows-1251' /><title>" + mess + "</title><link rel='stylesheet' type='text/css' href='main.css' />";
    Middle = "</head><body><img src='" + url;
    End = "' onClick='window.close()' alt='\u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0438 \u0447\u0442\u043E\u0431\u044B \u0437\u0430\u043A\u0440\u044B\u0442\u044C \u043E\u043A\u043D\u043E' class='zoom' /></body></html>";
    WinOpt = "_blank,resizable=no,scrollbars=no,location=no,status=no,width=" + ww + ",height=" + hh + ",toolbar='0'";
    ZoomWin = window.open("", "ZoomWindow", WinOpt);
    ZoomWin.document.write(Start + Middle + End);
}