show/hide this revision's text 2 added 142 characters in body

This is a perfect candidate for closures:

setInterval(
    function ()
    {
       // Do Stuff
       var myVar = document.getElementById("givenID");
       setTimeout(
          function()
          {
              // Do Stuff
          myVar is available because the inner closure 
              // gets the outer closures scope
              myVar.innerHTML = "Junk";
          },2000);
    }, 10000);

I'm guessing that your

Your problem is scope related, and this would work around that.

show/hide this revision's text 1

This is a perfect candidate for closures:

setInterval(
    function ()
    {
       // Do Stuff
       setTimeout(
          function()
          {
              // Do Stuff
          },2000);
    }, 10000);

I'm guessing that your problem is scope related, and this would work around that.