// static/js/nativeads.js
function hideAdNote() {
document.getElementById("ad-note").id = 'ad-note-hidden';
document.getElementById("ad-note-content-wrapper").innerHTML = "";
document.cookie = "notice-shown=true;path=/";
}
if (!document.cookie.includes("notice-shown")) {
document.getElementById("ad-note-hidden").id = 'ad-note';
document.getElementById("ad-note-content-wrapper").innerHTML = "No adblocker detected. " +
"Consider using an extension like uBlock Origin to save time and bandwidth." +
" Click here to close.";
}