    function PreLoad () {

        out     =   new Array (28);
        over    =   new Array (28);
        obj     =   new Array (8);
    
        obj[1]  =   12;
        obj[2]  =   4;
        obj[3]  =   5;
        obj[4]  =   2;
        obj[5]  =   4;
        obj[8]  =   2;

        path        =   "img.secondary/menu/";

        n       =   0;
        x       =   0;
        while (n <= 9) {
        
            i   =   1;
            n++;
        
            while (i <= obj[n]) {

                x++;
                out[x]  =   new Image;
                over[x] =   new Image;

                if (i < 10) {
                    prefix = "0";
                } else {
                    prefix = "";
                }

                out[x].src  =   path + "menu.0" + n + "." + prefix + i + ".0.gif";
                over[x].src =   path + "menu.0" + n + "." + prefix + i + ".1.gif";

                i++;
            }
        }
    }

    function Swap (ImageNumber, Object) {
    
        window.document.images[ImageNumber].src = Object.src;
    }







    function PopUp (h_size, w_size, path) {



        window.open (path,"info","left=10,top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + w_size + ",height=" + h_size).focus();



    }


