<center><h1>Typing Text</h1></center>
<script language="JavaScript1.2">
var it=0
var head="display:''"
function initialize(){
mytext=typing.innerText
var myheight=typing.offsetHeight
typing.innerText=''
document.all.typing.style.height=myheight
typeit()
}
function typeit(){
typing.insertAdjacentText("beforeEnd",mytext.charAt(it))
if (it<mytext.length-1){
it++
setTimeout("typeit()",100)
}
else
return
}
if (document.all)
document.body.onload=initialize
</script>
<p id="typing" style="visiblity:hidden;height:2pix">If you are using Internet Explorer 4.x or later, this text should be appearing one letter at a time, as if it were being typed. Other browsers should just see the text as normal.</p>
