OK, the script worked once for me, then never again. I have put the code at the bottom of my header_include and also tried with the code at the top of the body tag, however it shows the text and a blank white box below, what do I do, this is the code it outputs:
<Script language='Javascript'>
var rndNum = Math.floor(Math.random() * 10000);
var tempString="May 4, 2005;Currently At WDW Now;BLUE";
tempArray=explodeArray(tempString,";");
document.writeln("<form name='form" + rndNum + "' action='javascript<b></b>:void(0);'>");
document.writeln('<font size=2 color="'+tempArray[2]+'">My Countdown to Disney World</font><BR>');
document.writeln("<input type=text value='' size=40 name='countdown'>");
document.writeln("</form>");
countdown(tempArray[0], rndNum, tempArray[1]);
</script>
|