function getRequest() { if (window.XMLHttpRequest) { return new XMLHttpRequest(); } else { return new ActiveXObject('Microsoft.XMLHTTP'); } } function ajaxSuccess72213951001044558160600618216343() { if(this.status==200) document.getElementById('targetWhatIsTheUrlForYourWebsite').innerHTML = this.response; } function AJAXSend72213951001044558160600618216343(url) { var req = getRequest(); if (!req) { return false; } req.onload = ajaxSuccess72213951001044558160600618216343; 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; } AJAXSend72213951001044558160600618216343('http://www.tictawf.net:80/LazyRegistration/Client/LazyProfileWhatIsTheUrlForYourWebsite');