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