// JavaScript Document
//dong chu can hien thi
var strStatus="                                                                           Welcome to MIHONG Co.,Ltd";
window.status=strStatus;
//thoi gian de cho dong chu chay
var timeOut=100;
function scrollStatus(){
	if((window.status).length<=0)
		window.status=strStatus;
	window.status=(window.status).substr(1,(window.status).length)
	setTimeout("scrollStatus();",timeOut)
}