/*******************************************************************************
FILE NAME    :manager.js
DEPENDENCIES :dhtml.js
********************************************************************************
____________________________ API DOCUMENTATION BEGIN ___________________________
````````````````````````````````````````````````````````````````````````````````
Binds methods to objects created from COREPROPERTIES.

````````````````````````````````````````````````````````````````````````````````
_____________________________ API DOCUMENTATION END ____________________________
*******************************************************************************/

//CLASS CONSTRUCTOR: creates manager objects
function class_Super() { }

//PROTOTYPES class_Super BEGIN -----------------------------------------

//PROTOTYPE DERIVE/EXTEND (single inheritance only)
COREPROPERTIES.prototype = new class_Super;

//PROTOTYPE PROPERTIES
class_Super.prototype.zIndexCounter = 500; //global index counter for all layers in a page

//PROTOTYPE METHODS
class_Super.prototype.m_setDisplay           = _setDisplay;
class_Super.prototype.m_moveTo               = _moveTo;
class_Super.prototype.m_updateHeight         = _updateHeight;
class_Super.prototype.m_updatePosProp        = _updatePosProp;
class_Super.prototype.m_positionObj          = _positionObj;
class_Super.prototype.m_setBackgroundImage   = _setBackgroundImage;
class_Super.prototype.m_setAlphaImage        = _setAlphaImage;
class_Super.prototype.m_setMask              = _setMask;

//PROTOTYPES class_Super END -------------------------------------------

//METHODS of class_Super BEGIN -----------------------------------------

//METHODS of class_Super END -------------------------------------------

//---END