<!-- This script is featured at JavaScript Planet at
http://www.js-planet.com Check out JavaScript
Planet for more scripts, links, etc. Please leave
this comment intact.
-->
<script lanuage="JavaScript">
// This script by Mike Harty
// More scripts are at
// http://www.oocities.org/televisioncity/8970/
// Where it says a[1] you put the text leave a[2] blank don't touch
// it or it will be screwed okay have fun and
// ENJOY!
// copyright Mike Harty (c)
var count = -1;
var counter;
var nchar
var speedtogo = 200
var a = new Array();
a[1] = "Your text";
a[2] = "";
function capswitch() {
count++
if(count == 0){
document.wow.display.value = a[1]
}
if(count == 1){
document.wow.display.value = a[2].substring(0, 1)
+
a[1].substring(20, 1)
}
if(count > 1){
a[3] = a[1].substring(0, count - 1) + a[2].substring(count
- 1,
count) + a[1].substring(20, count)
document.wow.display.value = a[3]
}
if(count == a[1].length){
count = -1
}
counter
= setTimeout("capswitch()",speedtogo);
}
</script>
</HEAD>
<BODY BGCOLOR="black" text="white" onload="capswitch()">
<center>
<form name="wow">
<input type="text" size="20" name="display" value="">
</form> |