
  if (document.body.getAttribute) {

      var currPost = 0;
      var fStartPost = 1;
      var isThisPost = false;

      if (document.body.getAttribute("currPost")) {
          currPost = document.body.getAttribute("currPost");
          currPost++;
          document.body.setAttribute("currPost",currPost);

      } else {
          document.body.setAttribute("currPost",1);
          currPost++;
      }

      if (document.body.getAttribute("fStartPost")) {
          fs = parseInt(document.body.getAttribute("fStartPost"));
          if (!isNaN(fs)) fStartPost = fs
      }

      if (currPost == fStartPost) isThisPost = true;

      if (isThisPost) {
              feedSrc = 'http://feeds.feedburner.com/~s/GizmagEmergingTechnologyMagazine?i=' + escape("http://gizmag.com/go//") + '&showad=true'
              document.write('<script src=\"' + feedSrc + '\" type=\"text/javascript\"></script>');
      }
  }
            