﻿var GlassWindow = null; //ссылка на "окно-экран"
var Dialog = null; //ссылка на "окно формы"
var isIE = window.navigator.userAgent.indexOf("MSIE") > -1;

function ShowGlassWindow(show) {
    if (GlassWindow == null) {
        // 
        GlassWindow = document.createElement('DIV');
        with (GlassWindow.style) {
            //
            display = 'none'; //
            position = 'absolute'; //
            height = 0; width = 0; //любые 
            zIndex = 600; // 
            if (isIE) {//
                backgroundColor = '#000000'; //'#FFFFFF'
                filter = "progid:DXImageTransform.Microsoft.Alpha(Opacity=50, Style=0)";
            }
            else //
                backgroundImage = 'url(' + templateRoot + 'images/alfa50-fon.png)';
        }
        //
        document.body.appendChild(GlassWindow);

        if (GlassWindow.addEventListener)
            GlassWindow.addEventListener("click", (function (s) { hideSubscribePopUp(); }), false);
        else if (window.attachEvent)
            GlassWindow.attachEvent("onclick", (function (s) { hideSubscribePopUp(); }));
    }

    if (show) {
        var s = getDocumentSize();
        with (GlassWindow.style) {
            // 
            left = top = 0;
            width = s[0] + 'px';
            height = s[1] + 'px';
            zIndex = 600;

        }
    }
    GlassWindow.style.display = show ? 'block' : 'none';
}
function getDocumentSize() {
    return [
      document.body.scrollWidth > document.body.offsetWidth ?
            document.body.scrollWidth : document.body.offsetWidth,
      document.body.scrollHeight > document.body.offsetHeight ?
            document.body.scrollHeight : document.body.offsetHeight
      ];
}
