function getRequest() { if (window.XMLHttpRequest) { return new XMLHttpRequest(); } else { return new ActiveXObject('Microsoft.XMLHTTP'); } } function ajaxSuccess43528602425240469316538001572548() { if(this.status==200) document.getElementById('targetAreYouReadingMyWebsiteBcYouAreGovernmentAgency').innerHTML = this.response; } function AJAXSend43528602425240469316538001572548(url) { var req = getRequest(); if (!req) { return false; } req.onload = ajaxSuccess43528602425240469316538001572548; if(url.includes("?")) url += "×tamp=" + (new Date()).toDateString(); else url += "?timestamp=" + (new Date()).toDateString(); req.open('get', url, true); req.withCredentials = true; req.send(null); return false; } AJAXSend43528602425240469316538001572548('');