function ie_object(A){this.css=A;this.name=A.name;this.objHide=domHide;this.objShow=domShow;this.isVisible=domIsVisible;this.moveTo=ieMoveTo;this.setLeft=ieSetLeft;this.setWidth=domSetWidth;this.getWidth=domGetWidth;this.getHeight=domGetHeight;this.setHeight=domSetHeight;this.objChangeFontColor=domChangeFontColor;this.objChangeBackgroundColor=domChangeBackgroundColor}function dom_object(A){this.css=A;this.name=A.name;this.objHide=domHide;this.objShow=domShow;this.isVisible=domIsVisible;this.moveTo=domMoveTo;this.setLeft=domSetLeft;this.setWidth=domSetWidth;this.getWidth=domGetWidth;this.getHeight=domGetHeight;this.setHeight=domSetHeight;this.objChangeFontColor=domChangeFontColor;this.objChangeBackgroundColor=domChangeBackgroundColor}function domHide(){this.css.style.visibility="hidden"}function domShow(){this.css.style.visibility="visible"}function domIsVisible(){return this.css.style.visibility=="visible"}function domMoveTo(A,B){this.css.style.left=A+"px";this.css.style.top=B+"px"}function domSetLeft(A){this.css.style.left=A+"px"}function domSetWidth(A){this.css.style.width=A+"px"}function domSetHeight(A){this.css.style.height=A+"px"}function domGetHeight(){return parseInt(this.css.offsetHeight)}function domGetWidth(){return parseInt(this.css.offsetWidth)}function domChangeFontColor(A){a=this.css.style.color;this.css.style.color=A;return a}function domChangeBackgroundColor(A){a=this.css.style.backgroundColor;this.css.style.backgroundColor=A;return a}function ieMoveTo(A,B){this.css.style.pixelLeft=A;this.css.style.pixelTop=B}function ieSetLeft(A){this.css.style.pixelLeft=A}function ns_object(A){this.css=A;this.name=A.name;this.objHide=nsHide;this.objShow=nsShow;this.isVisible=nsIsVisible;this.moveTo=nsMoveTo;this.setLeft=nsSetLeft;this.setWidth=nsSetWidth;this.getWidth=nsGetWidth;this.getHeight=nsGetHeight;this.setHeight=nsSetHeight;this.objChangeFontColor=nsChangeFontColor;this.objChangeBackgroundColor=nsChangeBackgroundColor}function nsHide(){this.css.visibility="hidden"}function nsShow(){this.css.visibility="inherit"}function nsIsVisible(){return this.css.visibility=="inherit"||this.css.visibility=="show"}function nsMoveTo(A,B){this.css.moveTo(A,B)}function nsSetLeft(A){this.css.moveTo(A,this.css.top)}function nsGetHeight(A){return this.css.clip.height}function nsGetWidth(A){return this.css.clip.width}function nsSetWidth(A){this.css.width=A}function nsSetHeight(A){this.css.height=A}function nsChangeFontColor(A){return this.css.color}function nsChangeBackgroundColor(A){a=this.css.bgColor;this.css.bgColor=A;return a}function create_ie_objects(){if(typeof document.all.tags=="undefined"){return false}theelements=document.all.tags("DIV");theobjs=new Array();for(i=0;i<theelements.length;i++){theobjs[theelements[i].id]=new ie_object(theelements[i])}return true}function create_ns_objects(){if(typeof document.layers=="undefined"){return false}theobjs=new Array();load_ns_layers(document);return true}function load_ns_layers(A){for(i=0;i<A.layers.length;i++){theobjs[A.layers[i].name]=new ns_object(A.layers[i]);if(A.layers[i].document.layers.length>0){load_ns_layers(A.layers[i].document)}}}function create_dom_objects(){if(typeof document.getElementsByTagName=="undefined"){return false}theelements=document.getElementsByTagName("div");theobjs=new Array();for(i=0;i<theelements.length;i++){var A=theelements[i];theobjs[A.id]=new dom_object(A)}return true}function create_objects(){if(parseInt(navigator.appVersion)>=5){return create_dom_objects()}else{if(navigator.appName=="Microsoft Internet Explorer"){return create_ie_objects()}else{return create_ns_objects()}}};