function xbStyleNotSupported(){}function xbStyleNotSupportStringValue(propname){xbDEBUG.dump(propname+' is not supported in this browser');return''};function xbClipRect(a1,a2,a3,a4){this.top=0;this.right=0;this.bottom=0;this.left=0;if(typeof(a1)=='string'){var val;var ca;var i;if(a1.indexOf('rect(')==0){ca=a1.substring(5,a1.length-1).match(/-?[0-9a-zA-Z]+/g);for(i=0;i<4;++i){val=xbToInt(ca[i]);if(val!=0&&ca[i].indexOf('px')==-1){xbDEBUG.dump('xbClipRect: A clipping region '+a1+' was detected that did not use pixels as units.  Click Ok to continue, Cancel to Abort');return}ca[i]=val}this.top=ca[0];this.right=ca[1];this.bottom=ca[2];this.left=ca[3]}}else if(typeof(a1)=='number'&&typeof(a2)=='number'&&typeof(a3)=='number'&&typeof(a4)=='number'){this.top=a1;this.right=a2;this.bottom=a3;this.left=a4}}xbClipRect.prototype.top=0;xbClipRect.prototype.right=0;xbClipRect.prototype.bottom=0;xbClipRect.prototype.left=0;function xbClipRectGetWidth(){return this.right-this.left}xbClipRect.prototype.getWidth=xbClipRectGetWidth;function xbClipRectSetWidth(width){this.right=this.left+width}xbClipRect.prototype.setWidth=xbClipRectSetWidth;function xbClipRectGetHeight(){return this.bottom-this.top}xbClipRect.prototype.getHeight=xbClipRectGetHeight;function xbClipRectSetHeight(height){this.bottom=this.top+height}xbClipRect.prototype.setHeight=xbClipRectSetHeight;function xbClipRectToString(){return'rect('+this.top+'px '+this.right+'px '+this.bottom+'px '+this.left+'px )'}xbClipRect.prototype.toString=xbClipRectToString;function xbStyle(obj,position){if(typeof(obj)=='object'&&typeof(obj.style)!='undefined')this.styleObj=obj.style;else if(document.layers){if(typeof(position)=='undefined')position='';this.styleObj=obj;this.styleObj.position=position}this.object=obj}xbStyle.prototype.styleObj=null;xbStyle.prototype.object=null;function xbStyleGetEffectiveValue(propname){var value=null;if(document.defaultView&&document.defaultView.getComputedStyle){if(navigator.family=='gecko'){switch(propname){case'clip':return this.styleObj[propname];case'top':if(navigator.family=='gecko'&&navigator.version<0.96&&this.styleObj.position=='relative')return this.object.offsetTop;case'left':if(navigator.family=='gecko'&&navigator.version<0.96&&this.styleObj.position=='relative')return this.object.offsetLeft}}var capIndex;var cappropname=propname;while((capIndex=cappropname.search(/[A-Z]/))!=-1){if(capIndex!=-1)cappropname=cappropname.substring(0,capIndex)+'-'+cappropname.substring(capIndex,capIndex).toLowerCase()+cappropname.substr(capIndex+1)}value=document.defaultView.getComputedStyle(this.object,'').getPropertyValue(cappropname);if(!value&&this.styleObj[propname])value=this.styleObj[propname]}else if(typeof(this.styleObj[propname])=='undefined')value=xbStyleNotSupportStringValue(propname);else{if(navigator.family!='ie4'||navigator.version<5){value=this.styleObj[propname]}else{value=this.object.currentStyle[propname];if(!value)value=this.styleObj[propname]}}return value}function cssStyleGetClip(){var clip=this.getEffectiveValue('clip');if(clip=='rect()')clip='';if(clip=='')clip='rect(0px '+this.getWidth()+'px '+this.getHeight()+'px 0px)';return clip}function nsxbStyleGetClip(){var clip=this.styleObj.clip;var rect=new xbClipRect(clip.top,clip.right,clip.bottom,clip.left);return rect.toString()}function cssStyleSetClip(sClipString){this.styleObj.clip=sClipString}function nsxbStyleSetClip(sClipString){var rect=new xbClipRect(sClipString);this.styleObj.clip.top=rect.top;this.styleObj.clip.right=rect.right;this.styleObj.clip.bottom=rect.bottom;this.styleObj.clip.left=rect.left}function cssStyleGetClipTop(){var clip=this.getClip();var rect=new xbClipRect(clip);return rect.top}function nsxbStyleGetClipTop(){return this.styleObj.clip.top}function cssStyleSetClipTop(top){var clip=this.getClip();var rect=new xbClipRect(clip);rect.top=top;this.styleObj.clip=rect.toString()}function nsxbStyleSetClipTop(top){return this.styleObj.clip.top=top}function cssStyleGetClipRight(){var clip=this.getClip();var rect=new xbClipRect(clip);return rect.right}function nsxbStyleGetClipRight(){return this.styleObj.clip.right}function cssStyleSetClipRight(right){var clip=this.getClip();var rect=new xbClipRect(clip);rect.right=right;this.styleObj.clip=rect.toString()}function nsxbStyleSetClipRight(right){return this.styleObj.clip.right=right}function cssStyleGetClipBottom(){var clip=this.getClip();var rect=new xbClipRect(clip);return rect.bottom}function nsxbStyleGetClipBottom(){return this.styleObj.clip.bottom}function cssStyleSetClipBottom(bottom){var clip=this.getClip();var rect=new xbClipRect(clip);rect.bottom=bottom;this.styleObj.clip=rect.toString()}function nsxbStyleSetClipBottom(bottom){return this.styleObj.clip.bottom=bottom}function cssStyleGetClipLeft(){var clip=this.getClip();var rect=new xbClipRect(clip);return rect.left}function nsxbStyleGetClipLeft(){return this.styleObj.clip.left}function cssStyleSetClipLeft(left){var clip=this.getClip();var rect=new xbClipRect(clip);rect.left=left;this.styleObj.clip=rect.toString()}function nsxbStyleSetClipLeft(left){return this.styleObj.clip.left=left}function cssStyleGetClipWidth(){var clip=this.getClip();var rect=new xbClipRect(clip);return rect.getWidth()}function nsxbStyleGetClipWidth(){return this.styleObj.clip.width}function cssStyleSetClipWidth(width){var clip=this.getClip();var rect=new xbClipRect(clip);rect.setWidth(width);this.styleObj.clip=rect.toString()}function nsxbStyleSetClipWidth(width){return this.styleObj.clip.width=width}function cssStyleGetClipHeight(){var clip=this.getClip();var rect=new xbClipRect(clip);return rect.getHeight()}function nsxbStyleGetClipHeight(){return this.styleObj.clip.height}function cssStyleSetClipHeight(height){var clip=this.getClip();var rect=new xbClipRect(clip);rect.setHeight(height);this.styleObj.clip=rect.toString()}function nsxbStyleSetClipHeight(height){return this.styleObj.clip.height=height}function cssStyleGetLeft(){var left=this.getEffectiveValue('left');if(typeof(left)=='number')return left;if(left!=''&&left.indexOf('px')==-1){xbDEBUG.dump('xbStyle.getLeft: Element ID='+this.object.id+' does not use pixels as units. left='+left+' Click Ok to continue, Cancel to Abort');return 0}if(left=='')left=this.styleObj.left='0px';return xbToInt(left)}function nsxbStyleGetLeft(){return this.styleObj.left}function cssStyleSetLeft(left){if(typeof(this.styleObj.left)=='number')this.styleObj.left=left;else this.styleObj.left=left+'px'}function nsxbStyleSetLeft(left){this.styleObj.left=left}function cssStyleGetTop(){var top=this.getEffectiveValue('top');if(typeof(top)=='number')return top;if(top!=''&&top.indexOf('px')==-1){xbDEBUG.dump('xbStyle.getTop: Element ID='+this.object.id+' does not use pixels as units. top='+top+' Click Ok to continue, Cancel to Abort');return 0}if(top=='')top=this.styleObj.top='0px';return xbToInt(top)}function nsxbStyleGetTop(){return this.styleObj.top}function cssStyleSetTop(top){if(typeof(this.styleObj.top)=='number')this.styleObj.top=top;else this.styleObj.top=top+'px'}function nsxbStyleSetTop(top){this.styleObj.top=top}function cssStyleGetPageX(){var x=0;var elm=this.object;var elmstyle;var position;if(typeof(elm.offsetLeft)=='number'){while(elm){x+=elm.offsetLeft;elm=elm.offsetParent}}else{while(elm){if(elm.style){elmstyle=new xbStyle(elm);position=elmstyle.getEffectiveValue('position');if(position!=''&&position!='static')x+=elmstyle.getLeft()}elm=elm.parentNode}}return x}function nsxbStyleGetPageX(){return this.styleObj.pageX}function cssStyleSetPageX(x){var xParent=0;var elm=this.object.parentNode;var elmstyle;var position;if(elm&&typeof(elm.offsetLeft)=='number'){while(elm){xParent+=elm.offsetLeft;elm=elm.offsetParent}}else{while(elm){if(elm.style){elmstyle=new xbStyle(elm);position=elmstyle.getEffectiveValue('position');if(position!=''&&position!='static')xParent+=elmstyle.getLeft()}elm=elm.parentNode}}x-=xParent;this.setLeft(x)}function nsxbStyleSetPageX(x){this.styleObj.x=this.styleObj.x+x-this.styleObj.pageX}function cssStyleGetPageY(){var y=0;var elm=this.object;var elmstyle;var position;if(typeof(elm.offsetTop)=='number'){while(elm){y+=elm.offsetTop;elm=elm.offsetParent}}else{while(elm){if(elm.style){elmstyle=new xbStyle(elm);position=elmstyle.getEffectiveValue('position');if(position!=''&&position!='static')y+=elmstyle.getTop()}elm=elm.parentNode}}return y}function nsxbStyleGetPageY(){return this.styleObj.pageY}function cssStyleSetPageY(y){var yParent=0;var elm=this.object.parentNode;var elmstyle;var position;if(elm&&typeof(elm.offsetTop)=='number'){while(elm){yParent+=elm.offsetTop;elm=elm.offsetParent}}else{while(elm){if(elm.style){elmstyle=new xbStyle(elm);position=elmstyle.getEffectiveValue('position');if(position!=''&&position!='static')yParent+=elmstyle.getTop()}elm=elm.parentNode}}y-=yParent;this.setTop(y)}function nsxbStyleSetPageY(y){this.styleObj.y=this.styleObj.y+y-this.styleObj.pageY}function cssStyleGetHeight(){var height=this.getEffectiveValue('height');if(typeof(height)=='number')return height;if((height=='auto'||height.indexOf('%')!=-1)&&typeof(this.object.offsetHeight)=='number')height=this.object.offsetHeight+'px';if(height!=''&&height!='auto'&&height.indexOf('px')==-1){xbDEBUG.dump('xbStyle.getHeight: Element ID='+this.object.id+' does not use pixels as units. height='+height+' Click Ok to continue, Cancel to Abort');return 0}height=xbToInt(height);return height}function nsxbStyleGetHeight(){return this.styleObj.clip.height}function cssStyleSetHeight(height){if(typeof(this.styleObj.height)=='number')this.styleObj.height=height;else this.styleObj.height=height+'px'}function nsxbStyleSetHeight(height){this.styleObj.clip.height=height}function cssStyleGetWidth(){var width=this.getEffectiveValue('width');if(typeof(width)=='number')return width;if((width=='auto'||width.indexOf('%')!=-1)&&typeof(this.object.offsetWidth)=='number')width=this.object.offsetWidth+'px';if(width!=''&&width!='auto'&&width.indexOf('px')==-1){xbDEBUG.dump('xbStyle.getWidth: Element ID='+this.object.id+' does not use pixels as units. width='+width+' Click Ok to continue, Cancel to Abort');return 0}width=xbToInt(width);return width}function nsxbStyleGetWidth(){return this.styleObj.clip.width}function cssStyleSetWidth(width){if(typeof(this.styleObj.width)=='number')this.styleObj.width=width;else this.styleObj.width=width+'px'}function nsxbStyleSetWidth(width){this.styleObj.clip.width=width}function cssStyleGetVisibility(){return this.getEffectiveValue('visibility')}function nsxbStyleGetVisibility(){switch(this.styleObj.visibility){case'hide':return'hidden';case'show':return'visible'}return''}function cssStyleSetVisibility(visibility){this.styleObj.visibility=visibility}function nsxbStyleSetVisibility(visibility){switch(visibility){case'hidden':visibility='hide';break;case'visible':visibility='show';break;case'inherit':break;default:visibility='show';break}this.styleObj.visibility=visibility}function cssStyleGetzIndex(){return xbToInt(this.getEffectiveValue('zIndex'))}function nsxbStyleGetzIndex(){return this.styleObj.zIndex}function cssStyleSetzIndex(zIndex){this.styleObj.zIndex=zIndex}function nsxbStyleSetzIndex(zIndex){this.styleObj.zIndex=zIndex}function cssStyleGetBackgroundColor(){return this.getEffectiveValue('backgroundColor')}function nsxbStyleGetBackgroundColor(){return this.styleObj.bgColor}function cssStyleSetBackgroundColor(color){this.styleObj.backgroundColor=color}function nsxbStyleSetBackgroundColor(color){if(color){this.styleObj.bgColor=color;this.object.document.bgColor=color;this.resizeTo(this.getWidth(),this.getHeight())}}function cssStyleGetColor(){return this.getEffectiveValue('color')}function nsxbStyleGetColor(){return'#ffffff'}function cssStyleSetColor(color){this.styleObj.color=color}function nsxbStyleSetColor(color){this.object.document.fgColor=color}function xbStyleMoveAbove(cont){this.setzIndex(cont.getzIndex()+1)}function xbStyleMoveBelow(cont){var zindex=cont.getzIndex()-1;this.setzIndex(zindex)}function xbStyleMoveBy(deltaX,deltaY){this.moveTo(this.getLeft()+deltaX,this.getTop()+deltaY)}function xbStyleMoveTo(x,y){this.setLeft(x);this.setTop(y)}function xbStyleMoveToAbsolute(x,y){this.setPageX(x);this.setPageY(y)}function xbStyleResizeBy(deltaX,deltaY){this.setWidth(this.getWidth()+deltaX);this.setHeight(this.getHeight()+deltaY)}function xbStyleResizeTo(x,y){this.setWidth(x);this.setHeight(y)}function nsxbStyleOnresize(){if(saveInnerWidth!=xbGetWindowWidth()||saveInnerHeight!=xbGetWindowHeight())location.reload();return false}function xbSetInnerHTML(str){if(typeof(this.object.innerHTML)!='undefined')this.object.innerHTML=str}function nsxbSetInnerHTML(str){this.object.document.open('text/html');this.object.document.write(str);this.object.document.close()}function cssStyleGetBorderTopWidth(){return xbToInt(this.getEffectiveValue('borderTopWidth'))}function cssStyleGetBorderRightWidth(){return xbToInt(this.getEffectiveValue('borderRightWidth'))}function cssStyleGetBorderBottomWidth(){return xbToInt(this.getEffectiveValue('borderLeftWidth'))}function cssStyleGetBorderLeftWidth(){return xbToInt(this.getEffectiveValue('borderLeftWidth'))}function cssStyleGetMarginTop(){return xbToInt(this.getEffectiveValue('marginTop'))}function cssStyleGetMarginRight(){return xbToInt(this.getEffectiveValue('marginRight'))}function cssStyleGetMarginBottom(){return xbToInt(this.getEffectiveValue('marginBottom'))}function cssStyleGetMarginLeft(){return xbToInt(this.getEffectiveValue('marginLeft'))}function cssStyleGetPaddingTop(){return xbToInt(this.getEffectiveValue('paddingTop'))}function cssStyleGetPaddingRight(){return xbToInt(this.getEffectiveValue('paddingRight'))}function cssStyleGetPaddingBottom(){return xbToInt(this.getEffectiveValue('paddingBottom'))}function cssStyleGetPaddingLeft(){return xbToInt(this.getEffectiveValue('paddingLeft'))}function cssStyleGetClientTop(){return this.getTop()-this.getMarginTop()-this.getBorderTopWidth()-this.getPaddingTop()}function cssStyleGetClientLeft(){return this.getLeft()-this.getMarginLeft()-this.getBorderLeftWidth()-this.getPaddingLeft()}function cssStyleGetClientWidth(){return this.getMarginLeft()+this.getBorderLeftWidth()+this.getPaddingLeft()+this.getWidth()+this.getPaddingRight()+this.getBorderRightWidth()+this.getMarginRight()}function cssStyleGetClientHeight(){return this.getMarginTop()+this.getBorderTopWidth()+this.getPaddingTop()+this.getHeight()+this.getPaddingBottom()+this.getBorderBottomWidth()+this.getMarginBottom()}xbStyle.prototype.getEffectiveValue=xbStyleGetEffectiveValue;xbStyle.prototype.moveAbove=xbStyleMoveAbove;xbStyle.prototype.moveBelow=xbStyleMoveBelow;xbStyle.prototype.moveBy=xbStyleMoveBy;xbStyle.prototype.moveTo=xbStyleMoveTo;xbStyle.prototype.moveToAbsolute=xbStyleMoveToAbsolute;xbStyle.prototype.resizeBy=xbStyleResizeBy;xbStyle.prototype.resizeTo=xbStyleResizeTo;if(document.all||document.getElementsByName){xbStyle.prototype.getClip=cssStyleGetClip;xbStyle.prototype.setClip=cssStyleSetClip;xbStyle.prototype.getClipTop=cssStyleGetClipTop;xbStyle.prototype.setClipTop=cssStyleSetClipTop;xbStyle.prototype.getClipRight=cssStyleGetClipRight;xbStyle.prototype.setClipRight=cssStyleSetClipRight;xbStyle.prototype.getClipBottom=cssStyleGetClipBottom;xbStyle.prototype.setClipBottom=cssStyleSetClipBottom;xbStyle.prototype.getClipLeft=cssStyleGetClipLeft;xbStyle.prototype.setClipLeft=cssStyleSetClipLeft;xbStyle.prototype.getClipWidth=cssStyleGetClipWidth;xbStyle.prototype.setClipWidth=cssStyleSetClipWidth;xbStyle.prototype.getClipHeight=cssStyleGetClipHeight;xbStyle.prototype.setClipHeight=cssStyleSetClipHeight;xbStyle.prototype.getLeft=cssStyleGetLeft;xbStyle.prototype.setLeft=cssStyleSetLeft;xbStyle.prototype.getTop=cssStyleGetTop;xbStyle.prototype.setTop=cssStyleSetTop;xbStyle.prototype.getPageX=cssStyleGetPageX;xbStyle.prototype.setPageX=cssStyleSetPageX;xbStyle.prototype.getPageY=cssStyleGetPageY;xbStyle.prototype.setPageY=cssStyleSetPageY;xbStyle.prototype.getVisibility=cssStyleGetVisibility;xbStyle.prototype.setVisibility=cssStyleSetVisibility;xbStyle.prototype.getzIndex=cssStyleGetzIndex;xbStyle.prototype.setzIndex=cssStyleSetzIndex;xbStyle.prototype.getHeight=cssStyleGetHeight;xbStyle.prototype.setHeight=cssStyleSetHeight;xbStyle.prototype.getWidth=cssStyleGetWidth;xbStyle.prototype.setWidth=cssStyleSetWidth;xbStyle.prototype.getBackgroundColor=cssStyleGetBackgroundColor;xbStyle.prototype.setBackgroundColor=cssStyleSetBackgroundColor;xbStyle.prototype.getColor=cssStyleGetColor;xbStyle.prototype.setColor=cssStyleSetColor;xbStyle.prototype.setInnerHTML=xbSetInnerHTML;xbStyle.prototype.getBorderTopWidth=cssStyleGetBorderTopWidth;xbStyle.prototype.getBorderRightWidth=cssStyleGetBorderRightWidth;xbStyle.prototype.getBorderBottomWidth=cssStyleGetBorderBottomWidth;xbStyle.prototype.getBorderLeftWidth=cssStyleGetBorderLeftWidth;xbStyle.prototype.getMarginLeft=cssStyleGetMarginLeft;xbStyle.prototype.getMarginTop=cssStyleGetMarginTop;xbStyle.prototype.getMarginRight=cssStyleGetMarginRight;xbStyle.prototype.getMarginBottom=cssStyleGetMarginBottom;xbStyle.prototype.getMarginLeft=cssStyleGetMarginLeft;xbStyle.prototype.getPaddingTop=cssStyleGetPaddingTop;xbStyle.prototype.getPaddingRight=cssStyleGetPaddingRight;xbStyle.prototype.getPaddingBottom=cssStyleGetPaddingBottom;xbStyle.prototype.getPaddingLeft=cssStyleGetPaddingLeft;xbStyle.prototype.getClientTop=cssStyleGetClientTop;xbStyle.prototype.getClientLeft=cssStyleGetClientLeft;xbStyle.prototype.getClientWidth=cssStyleGetClientWidth;xbStyle.prototype.getClientHeight=cssStyleGetClientHeight}else if(document.layers){xbStyle.prototype.getClip=nsxbStyleGetClip;xbStyle.prototype.setClip=nsxbStyleSetClip;xbStyle.prototype.getClipTop=nsxbStyleGetClipTop;xbStyle.prototype.setClipTop=nsxbStyleSetClipTop;xbStyle.prototype.getClipRight=nsxbStyleGetClipRight;xbStyle.prototype.setClipRight=nsxbStyleSetClipRight;xbStyle.prototype.getClipBottom=nsxbStyleGetClipBottom;xbStyle.prototype.setClipBottom=nsxbStyleSetClipBottom;xbStyle.prototype.getClipLeft=nsxbStyleGetClipLeft;xbStyle.prototype.setClipLeft=nsxbStyleSetClipLeft;xbStyle.prototype.getClipWidth=nsxbStyleGetClipWidth;xbStyle.prototype.setClipWidth=nsxbStyleSetClipWidth;xbStyle.prototype.getClipHeight=nsxbStyleGetClipHeight;xbStyle.prototype.setClipHeight=nsxbStyleSetClipHeight;xbStyle.prototype.getLeft=nsxbStyleGetLeft;xbStyle.prototype.setLeft=nsxbStyleSetLeft;xbStyle.prototype.getTop=nsxbStyleGetTop;xbStyle.prototype.setTop=nsxbStyleSetTop;xbStyle.prototype.getPageX=nsxbStyleGetPageX;xbStyle.prototype.setPageX=nsxbStyleSetPageX;xbStyle.prototype.getPageY=nsxbStyleGetPageY;xbStyle.prototype.setPageY=nsxbStyleSetPageY;xbStyle.prototype.getVisibility=nsxbStyleGetVisibility;xbStyle.prototype.setVisibility=nsxbStyleSetVisibility;xbStyle.prototype.getzIndex=nsxbStyleGetzIndex;xbStyle.prototype.setzIndex=nsxbStyleSetzIndex;xbStyle.prototype.getHeight=nsxbStyleGetHeight;xbStyle.prototype.setHeight=nsxbStyleSetHeight;xbStyle.prototype.getWidth=nsxbStyleGetWidth;xbStyle.prototype.setWidth=nsxbStyleSetWidth;xbStyle.prototype.getBackgroundColor=nsxbStyleGetBackgroundColor;xbStyle.prototype.setBackgroundColor=nsxbStyleSetBackgroundColor;xbStyle.prototype.getColor=nsxbStyleGetColor;xbStyle.prototype.setColor=nsxbStyleSetColor;xbStyle.prototype.setInnerHTML=nsxbSetInnerHTML;xbStyle.prototype.getBorderTopWidth=xbStyleNotSupported;xbStyle.prototype.getBorderRightWidth=xbStyleNotSupported;xbStyle.prototype.getBorderBottomWidth=xbStyleNotSupported;xbStyle.prototype.getBorderLeftWidth=xbStyleNotSupported;xbStyle.prototype.getMarginLeft=xbStyleNotSupported;xbStyle.prototype.getMarginTop=xbStyleNotSupported;xbStyle.prototype.getMarginRight=xbStyleNotSupported;xbStyle.prototype.getMarginBottom=xbStyleNotSupported;xbStyle.prototype.getMarginLeft=xbStyleNotSupported;xbStyle.prototype.getPaddingTop=xbStyleNotSupported;xbStyle.prototype.getPaddingRight=xbStyleNotSupported;xbStyle.prototype.getPaddingBottom=xbStyleNotSupported;xbStyle.prototype.getPaddingLeft=xbStyleNotSupported;xbStyle.prototype.getClientTop=xbStyleNotSupported;xbStyle.prototype.getClientLeft=xbStyleNotSupported;xbStyle.prototype.getClientWidth=xbStyleNotSupported;xbStyle.prototype.getClientHeight=xbStyleNotSupported;window.saveInnerWidth=window.innerWidth;window.saveInnerHeight=window.innerHeight;window.onresize=nsxbStyleOnresize}else{xbStyle.prototype.toString=xbStyleNotSupported;xbStyle.prototype.getClip=xbStyleNotSupported;xbStyle.prototype.setClip=xbStyleNotSupported;xbStyle.prototype.getClipTop=xbStyleNotSupported;xbStyle.prototype.setClipTop=xbStyleNotSupported;xbStyle.prototype.getClipRight=xbStyleNotSupported;xbStyle.prototype.setClipRight=xbStyleNotSupported;xbStyle.prototype.getClipBottom=xbStyleNotSupported;xbStyle.prototype.setClipBottom=xbStyleNotSupported;xbStyle.prototype.getClipLeft=xbStyleNotSupported;xbStyle.prototype.setClipLeft=xbStyleNotSupported;xbStyle.prototype.getClipWidth=xbStyleNotSupported;xbStyle.prototype.setClipWidth=xbStyleNotSupported;xbStyle.prototype.getClipHeight=xbStyleNotSupported;xbStyle.prototype.setClipHeight=xbStyleNotSupported;xbStyle.prototype.getLeft=xbStyleNotSupported;xbStyle.prototype.setLeft=xbStyleNotSupported;xbStyle.prototype.getTop=xbStyleNotSupported;xbStyle.prototype.setTop=xbStyleNotSupported;xbStyle.prototype.getVisibility=xbStyleNotSupported;xbStyle.prototype.setVisibility=xbStyleNotSupported;xbStyle.prototype.getzIndex=xbStyleNotSupported;xbStyle.prototype.setzIndex=xbStyleNotSupported;xbStyle.prototype.getHeight=xbStyleNotSupported;xbStyle.prototype.setHeight=xbStyleNotSupported;xbStyle.prototype.getWidth=xbStyleNotSupported;xbStyle.prototype.setWidth=xbStyleNotSupported;xbStyle.prototype.getBackgroundColor=xbStyleNotSupported;xbStyle.prototype.setBackgroundColor=xbStyleNotSupported;xbStyle.prototype.getColor=xbStyleNotSupported;xbStyle.prototype.setColor=xbStyleNotSupported;xbStyle.prototype.setInnerHTML=xbStyleNotSupported;xbStyle.prototype.getBorderTopWidth=xbStyleNotSupported;xbStyle.prototype.getBorderRightWidth=xbStyleNotSupported;xbStyle.prototype.getBorderBottomWidth=xbStyleNotSupported;xbStyle.prototype.getBorderLeftWidth=xbStyleNotSupported;xbStyle.prototype.getMarginLeft=xbStyleNotSupported;xbStyle.prototype.getMarginTop=xbStyleNotSupported;xbStyle.prototype.getMarginRight=xbStyleNotSupported;xbStyle.prototype.getMarginBottom=xbStyleNotSupported;xbStyle.prototype.getMarginLeft=xbStyleNotSupported;xbStyle.prototype.getPaddingTop=xbStyleNotSupported;xbStyle.prototype.getPaddingRight=xbStyleNotSupported;xbStyle.prototype.getPaddingBottom=xbStyleNotSupported;xbStyle.prototype.getPaddingLeft=xbStyleNotSupported;xbStyle.prototype.getClientTop=xbStyleNotSupported;xbStyle.prototype.getClientLeft=xbStyleNotSupported;xbStyle.prototype.getClientWidth=xbStyleNotSupported;xbStyle.prototype.getClientHeight=xbStyleNotSupported}
