I just checked that thread you posted and viewed it's source.
Looks like you missed a line in your vbcode replacement
Here is the original code that I posted on page one:
PHP Code:
<Script language='Javascript'>
var rndNum = Math.floor(Math.random() * 10000);
var tempString="{option}";
tempArray=explodeArray(tempString,";");
document.writeln("<form name='form" + rndNum + "' action='java script:void(0);'>");
document.writeln('<font size=2 color="'+tempArray[2]+'">{param}</font><BR>');
document.writeln("<input type=text value='' size=40 name='countdown'>");
document.writeln("</form>");
countdown(tempArray[0], rndNum, tempArray[1]);
</script>
The missed line is:
PHP Code:
document.writeln('<font size=2 color="'+tempArray[2]+'">{param}</font><BR>');
This code is for the countdown vbcode, not the countup vbcode. Since you have not tested that one in your thread, I'm not sure if that also has the same problem (if it has a problem).