function CBigSkin(inSrc) { if (inSrc == null) { this.name = 'FlashChat Default'; this.swf_name = 'default_skin'; } else { this.name = inSrc.name; this.swf_name = inSrc.swf_name; } }; CBigSkin.prototype = new Initable(); CBigSkin.prototype.clone = function() { var obj = new CBigSkin(this); return obj; }; CBigSkin.prototype.init = function(xml) { this.copyAttrs(xml, this); }