	
		myMsg = "Welcome to visit this page.  Have a nice one !   "
		i = 0
	
		function scrollMsg() {
			window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i)
			if (i < myMsg.length) {
				i++
			}
			else {
				i = 0
			}
			setTimeout("scrollMsg()",120)
		}
	
