"use strict";
/*--- Sandbox. is where how you should communicate between modules, nothing else. ---*/
var sandbox;
if (typeof(window.parent.sandbox) === "object")
{
    sandbox = window.parent.sandbox;
} 
else 
{
    var sandbox = {
        /*--- remove the custom scroll bar  ---*/
        addScroll: function ()
        {
            scroller.add();
        },
        removeScroll: function ()
        {
            scroller.remove();
        },
        /*--- return if the frame is open ---*/
        isFramed: function ()
        {
            return anchors.isFramed();
        }
    };
}


