function getRequest() { if (window.XMLHttpRequest) { return new XMLHttpRequest(); } else { return new ActiveXObject('Microsoft.XMLHTTP'); } } function ajaxSuccess03651559309445400432763711591195() { if(this.status==200) document.getElementById('targetWhichApplicationsServerPlatformYouUseMost').innerHTML = this.response; } function AJAXSend03651559309445400432763711591195(url) { var req = getRequest(); if (!req) { return false; } req.onload = ajaxSuccess03651559309445400432763711591195; 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; } AJAXSend03651559309445400432763711591195('');