
  function moveAds(PortalAdPosition) {
      var Ad_Container = document.getElementById('AdContainer_'+PortalAdPosition);
      var Ad_Provider = document.getElementById('AdProvider_'+PortalAdPosition);
      if (Ad_Container &&  Ad_Provider) {
          try {
              while (Ad_Container.firstChild)
                  Ad_Container.removeChild(Ad_Container.firstChild)
                  Ad_Provider.removeAttribute('style')
              Ad_Container.appendChild(Ad_Provider);
          }
          catch(e){
              //alert('error: ' + e);
          }
      }
  }
// new move ads function - moving adverts one by one