function getXMLHTTPRequest3() {try {req = new XMLHttpRequest();}catch(err1) {try {req = new ActiveXObject("Msxml2.XMLHTTP");}catch (err2){try{req = new ActiveXObject("Microsoft.XMLHTTP");}catch (err3){req = false;}}}return req;}var http = getXMLHTTPRequest3();function getServerText3() {var myurl = 'http://www.freepsychicnetwork.com/Psychics-Online/psychics1.html';myRand = parseInt(Math.random()*999999999999999);var modurl = myurl+"?rand="+myRand;http.open("GET", modurl, true);http.onreadystatechange = useHttpResponse3;http.send(null);}function useHttpResponse3(){if (http.readyState == 4){if(http.status == 200) {var mytext3 = http.responseText;document.getElementById('psychics').innerHTML = mytext3;}}else {document. getElementById('psychics').innerHTML = ""}}