<!--
   var tagId;
   var anchorTags = document.getElementsByTagName("a");
   var promo = queryStringPromo.replace(/\&amp\;/ig, "&");
   for (tagId in anchorTags)
   {
      if (anchorTags[ tagId ].href 
         && -1 != anchorTags[ tagId ].href.indexOf("toOrder")
         && -1 == anchorTags[ tagId ].href.indexOf(promo))
      {
         anchorTags[ tagId ].href += queryStringPromo;
      }
   }
//