/* Copyright (c) 2010, Movitica Team. All rights reserved. */ YAHOO.namespace("website.panel"); /** * * */ YAHOO.website.panel.Panel = function(sId) { this.id = sId; this._oContainer = Dom.get(sId); }; YAHOO.lang.augmentProto(YAHOO.website.panel.Panel, YAHOO.util.EventProvider); YAHOO.website.panel.Panel.prototype.id = null; YAHOO.website.panel.Panel.prototype._oContainer = null; /** * Shows panel. */ YAHOO.website.panel.Panel.prototype.show = function() { Dom.removeClass(this.id, "hidden"); } /** * Hides panel */ YAHOO.website.panel.Panel.prototype.hide = function() { if (!Dom.hasClass(this.id, "hidden")) { Dom.addClass(this.id, "hidden"); } }