function importantInformationNextClick() { showVwCards(); } setValueAndShow = (id, value) => { if (value) { $('#' + id).html(value); document.getElementById(id).innerHTML = value; showDiv(id, true); } else { hideDiv(id); } } setLinkValueAndShow = (id, text, url, newWindow = false) => { var result = false; if (text) { if (newWindow) { $('#' + id).html(`${text}`); } else { $('#' + id).html(`${text}`); } showDiv(id, true); result = true; } else { hideDiv(id); } return true; }