the javascript. I know the .style exist but for the life of me can't fine the page. try adding the " " around blue, I think that is howit works. cause I know this works.

var myDiv = document.all["divName"];
// in Microsoft Internet Explorer
var myDiv = document.getElementById("divName");
// in Netscape 6

myDiv.style.fontSize = 16;
myDiv.style.backgroundColor = "red";
myDiv.style.fontWeight = "bolder";
myDiv.style.color = "blue";