if (document.all){  
	document.writeln('<span id="main2" style="z-index=1; position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;">') 
	document.writeln('<div onMouseOver="onmouse_event()" onMouseOut="mouseout_event()" style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0;top:1">')  
	document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0;top:1;">')  
	document.write(messages[0])  
	document.writeln('</div>')
	document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0;top:1;visibility:hidden">')  
	if(messages.length == 1){
		document.write('')  
	} else if (messages.length == 2) {
		document.write(messages[1])
		//document.write(messages[2])
	} else if (messages.length == 3) {
		document.write(messages[3])
	} else{
		document.write(messages[1]) 		
	}
	document.writeln('</div>')
 document.writeln('</div>')  
document.writeln('</span>')  
}                                                                                                            

startscroll(); // 스크롤 시작
