/*
 * Compressed by JSA(www.xidea.org)
 */
var stopscroll=false;function buildScrollingArea($,F,D,E,B,C,I,A){var G=new ScrollingInfo($,F,D,E,B,C);G.build();if(F.length<B*C)var _=false;else _=true;var H=new ScrollingEngine($,D,E,A,_);if(F.length>B*C)setTimeout(function(){H.run(H)},I)}function ScrollingEngine($,B,C,A,_){this.marqueesHeight=C;this.speed=A;this.stopscroll=false;this.scrollElem=document.getElementById($);this.scrollElem.style.width=B;this.scrollElem.style.height=this.marqueesHeight;this.scrollElem.style.overflow="hidden";this.scrollElem.noWrap=true;this.scrollElem.onmouseover=new Function("stopscroll = true;");this.scrollElem.onmouseout=new Function("stopscroll = false;");this.preTop=0;this.currentTop=0;this.stoptime=0;this.leftElem=document.getElementById("scrollTable");if(_)this.scrollElem.appendChild(this.leftElem.cloneNode(true));this.scrollElem.scrollTop=0}ScrollingEngine.prototype.run=function($){setInterval(function(){if(stopscroll)return;$.currentTop+=1;if($.currentTop==$.marqueesHeight+1){$.stoptime+=1;$.currentTop-=1;if($.stoptime==180){$.currentTop=0;$.stoptime=0}}else{$.preTop=$.scrollElem.scrollTop;$.scrollElem.scrollTop+=1;if($.preTop==$.scrollElem.scrollTop){$.scrollElem.scrollTop=0;$.scrollElem.scrollTop+=1}}},this.speed)};function ScrollingInfo($,D,B,C,_,A){this.element=$;this.datum=D;this.width=B;this.height=C;this.cols=_;this.rows=A}ScrollingInfo.prototype.build=function(){var $=0,A="<div id=\"scrollTable\"><table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">";for(var _=0;_<this.datum.length;_++){$++;if($%this.cols==1)A+="<tr>";A+="<td height=\""+this.height/this.rows+"\" width=\""+this.width/this.cols+"\">"+this.datum[_]+"</td>";if($%this.cols==0)A+="</tr>"}if($%this.cols){for(_=0;_<this.cols-$%this.cols;_++)A+="<td>&nbsp;</td>";A+="</tr>"}A+="</table></div>";document.getElementById(this.element).innerHTML=A}