// JavaScript Document
function checktopAds()
{   
  
   return true;  
}
function do_it()
{
  if ( checktopAds() )
  {
  var anim = function()
    {
      n += 5;
        if(n >= 80){
        document.getElementById('topAds_chk_show').style.marginTop = "0";
        window.clearInterval(t1);
        }else{
        document.getElementById('topAds_chk_show').style.marginTop = "-"+(80 - n)+"px";
        }
      },n=0;
      var t1 = window.setInterval(anim,90);
    }
}
function close_chk_show()
{
  var anim = function()
  {
    n += 5;
    if(n >= 80){
    document.getElementById('topAds_chk_show').style.marginTop = "-80px";
    window.clearInterval(t1);
    }else{
    document.getElementById('topAds_chk_show').style.marginTop = "-"+ n +"px";
    }
  },n=0;
    var t1 = window.setInterval(anim,90);
}
