﻿NetContentScript = function() {
    return {
        init: function() { }
        , test: function() { alert('test'); }
        , openCenteredPopup: function(path, name, width, height, resize, scroll, menu, tool, loc, direct, fullscr) {
            _resizable = '0';
            _scrollbars = '0';
            _menubar = '0';
            _toolbar = '0';
            _location = '0';
            _directories = '0';
            _fullscreen = '0';
            if (resize == "True" || resize == "true")
                _resizable = '1';
            if (scroll == "True" || scroll == "true")
                _scrollbars = '1';
            if (menu == "True" || menu == "true")
                _menubar = '1';
            if (tool == "True" || tool == "true")
                _toolbar = '1';
            if (loc == "True" || loc == "true")
                _location = '1';
            if (direct == "True" || direct == "true")
                _directories = '1';
            if (fullscr == "True" || fullscr == "true")
                _fullscreen = ',fullscreen=1';

            longueur = width;
            hauteur = height;
            haut = screen.height / 2 - hauteur / 2;
            dimx = screen.width / 2 - longueur / 2;
            window.open(path, name, 'width=' + longueur + ' ,height=' + hauteur + ',left=' + dimx + ',top=' + haut + ',resizable=' + _resizable + ',scrollbars=' + _scrollbars + ',menubar=' + _menubar + ',toolbar=' + _toolbar + ',location=' + _location + ',directories=' + _directories + _fullscreen);
        }
         , openCustomPopup: function(path, name, width, height, x, y, resize, scroll, menu, tool, loc, direct, fullscr) {
             _resizable = '0';
             _scrollbars = '0';
             _menubar = '0';
             _toolbar = '0';
             _location = '0';
             _directories = '0';
             _fullscreen = '0';
             if (resize == "True" || resize == "true")
                 _resizable = '1';
             if (scroll == "True" || scroll == "true")
                 _scrollbars = '1';
             if (menu == "True" || menu == "true")
                 _menubar = '1';
             if (tool == "True" || tool == "true")
                 _toolbar = '1';
             if (loc == "True" || loc == "true")
                 _location = '1';
             if (direct == "True" || direct == "true")
                 _directories = '1';
             if (fullscr == "True" || fullscr == "true")
                 _fullscreen = ',fullscreen=1';

             longueur = width;
             hauteur = height;
             window.open(path, name, 'width=' + longueur + ',height=' + hauteur + ',left=' + x + ',top=' + y + ',resizable=' + _resizable + ',scrollbars=' + _scrollbars + ',menubar=' + _menubar + ',toolbar=' + _toolbar + ',location=' + _location + ',directories=' + _directories + _fullscreen);

         }
    };
} ();


