document.write('<table width=100% border=0 cellspacing=0 cellpadding=0>'
+'<tr><td width=25><span class=F7></span></td>'
+'<td>'
+'<div id="icefable1" style="width:200;">'
+'<table  border=0 cellspacing=0 cellpadding=0>'
+'<tr><td height=18  class="shadow1"><div align=center>'+strArray[0]+'</div></td></tr>'
+'<tr><td height=18  class="shadow1"><div align=center>'+strArray[1]+'</div</td></tr>'
+'<tr><td height=18  class="shadow1"><div align=center>'+strArray[2]+'</div</td></tr>'
+'</table>'
+'</div>'
+'<div id="icefable2" style="position:absolute;z-index:1;visibility:hidden"></div>'
+'</td></tr>'
+'</table>');

marqueesHeight=18;
stopscroll=false;
icefable1.scrollTop=0;

with(icefable1){
  style.width=0;
  style.height=marqueesHeight;
  style.overflowX="visible";
  style.overflowY="hidden";
  noWrap=true;
  onmouseover=new Function("stopscroll=true");
  onmouseout=new Function("stopscroll=false");
}

preTop=0; currentTop=0; stoptime=0;

function init_srolltext(){
  icefable2.innerHTML="";
  icefable2.innerHTML+=icefable1.innerHTML;    
  icefable1.innerHTML=icefable2.innerHTML+icefable2.innerHTML;
  setInterval("scrollUp()",50);
}
function scrollUp(){
  if(stopscroll==true) return;
  currentTop+=1;
  if(currentTop==19)
  {
  	stoptime+=1;
  	currentTop-=1;
  	if(stoptime==50) 
  	{
  		currentTop=0;
  		stoptime=0;
  	}
  }
  else {  	
	  preTop=icefable1.scrollTop;
	  icefable1.scrollTop+=1;
	  if(preTop==icefable1.scrollTop){
	    icefable1.scrollTop=icefable2.offsetHeight-marqueesHeight;
	    icefable1.scrollTop+=1;
	  }
  }

}
init_srolltext();




