Javascript help asap!
how is your code setup? the text you want to change has to be contained within some element, like a <div> or <span> or anything else, and it has to have an id, like <div id="blah">... then, in javascript:
document.getElementById('blah').style.color = "#FF0000";
will set the color to red
document.getElementById('blah').style.color = "#FF0000";
will set the color to red


