JQ(window).load(function () {
   if(JQ('#popAd').length){
      var $pop=JQ('#popAd');
      //$pop.css('top',JQ(window).scrollTop()+80);

var leftMin=(JQ(window).width()-984)/-2;
if(leftMin>0) leftMin=0;
var leftNeeded=(1240-984)/-2;
var left;
if(leftMin>leftNeeded) left=leftMin; else left=leftNeeded;

      $pop.css('left',left);

JQ('#rightContent embed,#rightContent object').css({ 'visibility' : 'hidden' });
      $pop.show();
      JQ('#popAd a.popClose').bind('click',function(){JQ('#popAd').hide();JQ('#rightContent embed,#rightContent object').css({ 'visibility' : 'visible' });return false;});
      //setTimeout("JQ('#popAd').css('top',JQ(window).scrollTop()+100);JQ('#popAd').show();",2000);
      //setTimeout("JQ('#popAd').hide()",10000);
   }
});