function getXMLHTTPRequest() {
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 = getXMLHTTPRequest();

function getServerTextfirst(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponsefirst;
  http.send(null);
}

function useHttpResponsefirst() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('first').innerHTML = mytext;
    }
  } else {
  document. getElementById('first').innerHTML = "";
  }
}

function getServerTextsecond(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponsesecond;
  http.send(null);
}

function useHttpResponsesecond() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('second').innerHTML = mytext;
    }
  } else {
  document. getElementById('second').innerHTML = "";
  }
}


function getServerTextthird(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponsethird;
  http.send(null);
}

function useHttpResponsethird() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('third').innerHTML = mytext;
    }
  } else {
  document. getElementById('third').innerHTML = "";
  }
}


function getServerText(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponseText;
  http.send(null);
}

function useHttpResponseText() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('Text').innerHTML = mytext;
    }
  } else {
  document. getElementById('Text').innerHTML = "";
  }
}

function getServerover(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponseover;
  http.send(null);
}

function useHttpResponseover() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('over').innerHTML = mytext;
    }
  } else {
  document. getElementById('over').innerHTML = "";
  }
}


function getServerContent(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponseContent;
  http.send(null);
}

function useHttpResponseContent() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('Content').innerHTML = mytext;
    }
  } else {
  document. getElementById('Content').innerHTML = "";
  }
}

function getServerPengar(myurl) {
  var myurl ;

  myRand = parseInt(Math.random()*999999999999999);
  var modurl = myurl+"?rand="+myRand;  
  http.open("GET", modurl, true);
  http.onreadystatechange = useHttpResponsePengar;
  http.send(null);
}

function useHttpResponsePengar() {
   
   if (http.readyState == 4) {
    if(http.status == 200) { 
      var mytext = http.responseText;
      document.getElementById('Pengar').innerHTML = mytext;
    }
  } else {
  document. getElementById('Pengar').innerHTML = "";
  }
}
