// Gaia Ajax Widgets Copyright (C) 2007 - 2008 Gaiaware AS. details at http://ajaxwidgets.com/
Gaia.Panel=Class.create();Object.extend(Gaia.Panel.prototype,Gaia.WebControl.prototype);Object.extend(Gaia.Panel.prototype,Gaia.Container.prototype);Object.extend(Gaia.Panel.prototype,{initialize:function(element,options){this.initializePanel(element,options);},initializePanel:function(element,options){this.initializeWebControl(element,options);},setTabIndex:function(value){this.element.tabIndex=value;return this;},setFocus:function(){try{this.element.focus();}
catch(err){}
return this;},setVisible:function(value){value?Element.show(this.element):Element.hide(this.element);if(value!=true){this.destroy();}
return this;},destroy:function(){this.destroyContainer();this._destroyImpl();},_getElementPostValue:function(){return'';}});Gaia.Panel.browserFinishedLoading=true;