﻿function showTurkishRegulatioPopUp(is_show) {

    if (parseInt(is_show) == 1) {
        var popup = $('div[id$="turkish_regulation_popup"]');

        ShowGlassWindow(1);
        $(popup).show(10);
        $(popup).css('z-index', '700');
    }
}

function hideTurkishRegulatioPopUp() {
    var popup = $('div[id$="turkish_regulation_popup"]');
    ShowGlassWindow(0);
    $(popup).hide(10);
}

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;
            backgroundColor = '#000000';
            opacity = '0.4';
            if (isIE)
                filter = "progid:DXImageTransform.Microsoft.Alpha(Opacity=50, Style=0)";
        }
        //
        document.body.appendChild(GlassWindow);
    }

    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
      ];
}
