Here is a quick script:
In your <head> tags put this:
[code]<script>
function cDown(x, wrd){
if(x>0){
setTimeout(cDown(x-1, wrd), 1000);
} else {
document.getElementById('hideText').innerHTML = "Hidden word: " + wrd;
}
[code]
And put this in your body tag so it looks like
Code:
<body onload="cDown('20', 'Mase is cool! :)';">
And have a div like this somewhere in the body:
Code:
<div id="hideText">20</div>
Now I haven't tested this since I just wrote in on the spot so you might have to do some debugging. if you need more help just reply to this post.