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