function mb_age_warning_confirm() { localStorage.mb_age_warning_verified = "1"; document.getElementById("mb_age_warning").remove(); } /* edit below if you want to change the 18+ text */ function mb_age_warning() { $("body").append("
ADULTS ONLY WEBSITE
By entering you affirm that you are OVER 18.
I agree - ENTER or EXIT
By using the site you agree to the use of cookies including third party.
By entering you agree to the Terms and Conditions and Privacy Policy.


\"Restricted
") } $( document ).ready(function() { const urlParams = new URLSearchParams(window.location.search); const myParam = urlParams.get('utm_campaign'); //alert(myParam); if(myParam !== 'amat' && localStorage.mb_age_warning_verified === undefined) { var delay = 50; setTimeout(function() { mb_age_warning(); }, delay); } });