// Gaia Ajax Widgets Copyright (C) 2007  Frost Innovation AS. details at http://ajaxwidgets.com/
Gaia.Panel=function(element,options){this.initialize(element,options);}
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.baseInitializeWebControl(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.destroyChildrenControls();this.destroyContainer(this.element.id);this._destroyImpl();},_getElementPostValue:function(){return'';}});Gaia.Panel.browserFinishedLoading=true;