<!--
myMsg = "Welcome to ALC,Offering  Most affordable course fees in Klang, now available at ALC. Call 03-33447961 / 62 to register now. "
i = 0
function scrollMsg() {
			window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i-1)
			if (i < myMsg.length) {
				i++
			}
			else{
				i = 0
			}
			setTimeout("scrollMsg()",100)
}
-->
