<html>
<head>
<script language ="JavaScript">
<!--
var msg=" This is a message which should scroll"
function display()
{
msg=msg.substring(1,msg.length)+msg.substring(0,1)
document.frm1.txt1.value=msg
timerID=setTimeout("display()",100)
}
//-->
</script>
</head>
<body onload="display()">
<form name="frm1">

<input type="text" name="txt1" size=35>
</form>
</body>
</html>