function add_chat(){ document.write('
NEED HELP? CHAT WITH US
'); } add_chat(); function toggle_chat_window(){ var cwindow = document.getElementById('chat_box'); if(cwindow.style.bottom == '0px'){ document.getElementById('chat_box').style.bottom = '-368px'; document.getElementById('chat_btn').style.display = 'block'; } else { document.getElementById('chat_box').style.bottom = '0px'; document.getElementById('chat_btn').style.display = 'none'; } } window.addEventListener("message", (event) => { if (event.origin !== "https://coffeepot.expressivetek.com") return; toggle_chat_window(); }, false);