I finally got this site to validate! The folks over here were really helpful, and pointed out that I wasn’t assigning values to my objects’ style attributes properly. For example, I was doing: [sourcecode language=”javascript”] obj.style.width = 200; [/sourcecode] instead of: [sourcecode language=”javascript”] obj.style.width = “200px”; [/sourcecode] The second way is the correct way because…