//½ºÅ©·Ñ
function scrollObj(bLoad, oRoll, oRoll1, oRoll2, oText, iRoll){
	var sPattern = "<table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td align=center>#html#</td></tr></table>";
	
	var sTemp = oText.innerHTML.trim();
	if( sTemp.substr(sTemp.length-1,1) == "¢¯"){
		sTemp = sTemp.substr(0,sTemp.length-1);
	}
	
	var aRoll = sTemp.split("¢¯");
	
	if( bLoad == true ){
		oRoll1.style.pixelLeft = oRoll.style.pixelLeft;
		oRoll2.style.pixelLeft = oRoll.style.pixelLeft;
		oRoll1.style.pixelTop = 0;
		oRoll2.style.pixelTop = oRoll1.style.pixelTop + oRoll1.style.posHeight + 1;
		
		iRoll = 0;
		
		oRoll1.innerHTML = sPattern.replace("#html#", aRoll[iRoll]);
	}else{
		if( oRoll.bStop == false ){
			if( oRoll1.style.pixelTop == 0 ||  oRoll2.style.pixelTop == 0 ){				
				if( iRoll < (aRoll.length-1) ){
					iRoll++;
				}else{
					iRoll=0;
				}
			}
			
			if( oRoll1.style.pixelTop == 0 ){
				oRoll2.style.pixelTop = oRoll1.style.pixelTop + oRoll1.style.posHeight + 1;
				oRoll2.innerHTML = sPattern.replace("#html#", aRoll[iRoll]);

			}

			if( oRoll2.style.pixelTop == 0 ){
				oRoll1.style.pixelTop = oRoll2.style.pixelTop + oRoll1.style.posHeight + 1;
				oRoll1.innerHTML = sPattern.replace("#html#", aRoll[iRoll]);
			}

			oRoll1.style.pixelTop = oRoll1.style.pixelTop - 1;
			oRoll2.style.pixelTop = oRoll2.style.pixelTop - 1;
		}
	}

	if( aRoll.length-1 <= 0 ) return;
	
	var sFun = "";
	sFun = "scrollObj(false," + oRoll.id + "," + oRoll1.id + "," + oRoll2.id + ", " + oText.id + ", " + iRoll + ")";

	if( bLoad || oRoll1.style.pixelTop == 0 || oRoll2.style.pixelTop == 0 ){
		setTimeout(sFun, 2000);
	}else{
		setTimeout(sFun, 10);
	}
}

<!--
String.prototype.trim = function(){
	return this.replace(/(^\s*)|(\s*$)/g, "");
}

String.prototype.left = function(inLen){
	return this.substring(0,inLen);
}

String.prototype.right = function(inLen){
	return this.substring((this.length-inLen),this.length);
}

String.prototype.mid = function(inStart,inLen){
	return this.substring(inStart, ((!inLen)?this.length:(inStart + inLen)) );
}

String.prototype.isSpace = function(inChar){
	return (inChar == ' ' || inChar == '\t' || inChar == '\n');
}

String.prototype.lengthByte = function(){
	return (this.length+(escape(this)+'%u').match(/%u/g).length-1);
}
//-->