function sayHello() { document.getElementById('dayzr_div_container').style.display = 'block'; } function sayGoodbye() { document.getElementById('dayzr_div_container').style.display = 'none'; } function removeLayer() { document.getElementById('dayzr_full_div_container').style.display = 'none'; document.getElementById('dayzr_full_div_inner_container').style.display = 'none'; } var fullContainer = '' + ''; var fullInnerContainer = '' + ''; document.write(fullContainer); document.write(fullInnerContainer); var a = document.getElementById('dayzr_button'); a.style.padding = '0px'; a.style.margin = '0px'; a.onmouseover = function () { sayHello(); }; a.onmouseout = function () { sayGoodbye(); }; var div_container = document.createElement('div'); var divContainerIdName = 'dayzr_div_container'; div_container.setAttribute('id',divContainerIdName); div_container.setAttribute('style','z-index: 9999;position: relative; display: none; height:1%;width:125px;overflow:visible;padding:0px;margin:0px;'); var div_frame_container = document.createElement('div'); var divFrameContainerIdName = 'dayzr_div_frame_container'; div_frame_container.setAttribute('id',divFrameContainerIdName); div_frame_container.setAttribute('style','position: absolute;height:250px;width:250px;top:0px;left:0px;padding:0px;margin:0px;'); var div_frame = document.createElement('div'); var divFrameIdName = 'dayzr_div_frame'; div_frame.setAttribute('id',divFrameIdName); div_frame.setAttribute('style','height:200px;width:100%;padding:0px;margin:0px;'); div_frame.innerHTML = ''; div_frame_container.appendChild(div_frame); div_container.appendChild(div_frame_container); a.appendChild(div_container);