function Scroller(x,y,width,height,border,padding){this.x=x;this.y=y;this.width=width;this.height=height;this.border=border;this.padding=padding;this.items=new Array();this.created=false;this.fgColor="#000000";this.bgColor="#ffffff";this.bdColor="#000000";this.fontFace="Arial,Helvetica";this.fontSize="2";this.speed=50;this.pauseTime=2000;this.setColors=scrollerSetColors;this.setFont=scrollerSetFont;this.setSpeed=scrollerSetSpeed;this.setPause=scrollersetPause;this.addItem=scrollerAddItem;this.create=scrollerCreate;this.show=scrollerShow;this.hide=scrollerHide;this.moveTo=scrollerMoveTo;this.moveBy=scrollerMoveBy;this.getzIndex=scrollerGetzIndex;this.setzIndex=scrollerSetzIndex;this.stop=scrollerStop;this.start=scrollerStart;} function scrollerSetColors(fgcolor,bgcolor,bdcolor){if(this.created){alert("Scroller Error: Scroller has already been created.");return;} this.fgColor=fgcolor;this.bgColor=bgcolor;this.bdColor=bdcolor;} function scrollerSetFont(face,size){if(this.created){alert("Scroller Error: Scroller has already been created.");return;} this.fontFace=face;this.fontSize=size;} function scrollerSetSpeed(pps){if(this.created){alert("Scroller Error: Scroller has already been created.");return;} this.speed=pps;} function scrollersetPause(ms){if(this.created){alert("Scroller Error: Scroller has already been created.");return;} this.pauseTime=ms;} function scrollerAddItem(str){if(this.created){alert("Scroller Error: Scroller has already been created.");return;} this.items[this.items.length]=str;} function scrollerCreate(){var start,end;var str;var i,j;var x,y;if(!isMinNS4&&!ie&&!dom) return;if(scrollerList.length==0) setInterval('scrollerGo()',scrollerInterval);if(this.created){alert("Scroller Error: Scroller has already been created.");return;} this.created=true;this.items[this.items.length]=this.items[0];start='
| ' +'';end=' |