function addBannerCorner() { try { var body = document.getElementsByTagName('body').item(0) var container = document.createElement('div'); container.innerHTML=''; container.style.position='absolute'; container.style.zIndex='100000'; container.style.right='0'; container.style.top='0'; body.appendChild(container); } catch (e) { } } window.onload = addBannerCorner;