With this script yout text will write it self.

*put it inside <body> ... </body>

Code:
<table border=0 width=280 height=260 bgcolor="#ffffff"><tr><td align=center valign=top>

<script language="JavaScript1.2">

var it=0
function initialize(){
mytext=typing.innerText
var myheight=typing.offsetHeight
typing.innerText=''
document.all.typing.style.height=myheight
document.all.typing.style.visibility="visible"
typeit()
}
function typeit(){
typing.insertAdjacentText("beforeEnd",mytext.charAt(it))
if (it<mytext.length-1){
it++
setTimeout("typeit()",50)
}
else
return
}
if (document.all)
document.body.onload=initialize
</script>

<font size=2 color="#000090"><span id="typing" style="visibility:hidden">

Your Text Here


Your Text Here


Your Text Here


Your Text Here


Your Text Here


Your Text Here


Your Text Here


Your Text Here

</span></font>
</td></tr></table>