str = `
`; document.addEventListener("DOMContentLoaded", function() { var child = document.createElement('div'); child.innerHTML = str; document.getElementsByTagName('body')[0].appendChild(child); adsbottomLayer = document.getElementById('adsfl'); var adsIntervalId = 0; var adsmaxHeight = 100; var adsminHeight = 20; var adsminHeight1 = 15; var adscurHeight = 150; }); function adsshow( ){ adscurHeight += 2; if (adscurHeight > adsmaxHeight){ clearInterval ( adsIntervalId ); } adsbottomLayer.style.height = adscurHeight+'px'; } function adshide( ){ adscurHeight -= 3; if (adscurHeight < adsminHeight){ clearInterval ( adsIntervalId ); } adsbottomLayer.style.height = adscurHeight+'px'; } function adsclickhide(){ document.getElementById('adshide').style.display='none'; document.getElementById('adsshow').style.display='inline'; adsIntervalId = setInterval ( 'adshide()', 5 ); } function adsclickshow(){ document.getElementById('adshide').style.display='inline'; document.getElementById('adsshow').style.display='none'; adsIntervalId = setInterval ( 'adsshow()', 5 ); } function adsclickclose(){ document.body.style.marginBottom = '0px'; adsbottomLayer.style.display = 'none'; }