
var msg = 'Meeting the requirements of the Health & Safety regulations in line with the Health'
function scrollMsg(){
document.scrollDemo.textScroll.value = msg
msg = msg.substring(1,msg.length) + msg.substring(0,1)
setTimeout("scrollMsg()", 200)

}

