// JavaScript Document
var xmlhttp = false; 
//Check if we are using IE. 
try { 
//If the Javascript version is greater than 5. 
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
} catch (e) { 
//If not, then use the older active x object. 
try { 
//If we are using Internet Explorer. 
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
} catch (E) { 
//Else we must be using a non-IE browser. 
xmlhttp = false; 
} 
} 
//If we are using a non-IE browser, create a javascript instance of the object. 
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') { 
xmlhttp = new XMLHttpRequest(); 
} 


function makerequest(serverPage, objID) { 
var obj = document.getElementById(objID); 
xmlhttp.open("GET", serverPage); 
xmlhttp.onreadystatechange = function() { 
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { 
obj.innerHTML = xmlhttp.responseText; 
} 
} 
xmlhttp.send(null); 
} 


var xmlhttp2 = false; 
//Check if we are using IE. 
try { 
//If the Javascript version is greater than 5. 
xmlhttp2 = new ActiveXObject("Msxml2.XMLHTTP"); 
} catch (e) { 
//If not, then use the older active x object. 
try { 
//If we are using Internet Explorer. 
xmlhttp2 = new ActiveXObject("Microsoft.XMLHTTP"); 
} catch (E) { 
//Else we must be using a non-IE browser. 
xmlhttp2 = false; 
} 
} 
//If we are using a non-IE browser, create a javascript instance of the object. 
if (!xmlhttp2 && typeof XMLHttpRequest != 'undefined') { 
xmlhttp2 = new XMLHttpRequest(); 
} 


function makerequest2(serverPage2, objID2) { 
var obj = document.getElementById(objID2); 
xmlhttp2.open("GET", serverPage2); 
xmlhttp2.onreadystatechange = function() { 
if (xmlhttp2.readyState == 4 && xmlhttp2.status == 200) { 
obj.innerHTML = xmlhttp2.responseText; 
} 
} 
xmlhttp2.send(null); 
} 

var thePage = "Pages/features.php";


var xmlhttp3 = false; 
//Check if we are using IE. 
try { 
//If the Javascript version is greater than 5. 
xmlhttp3 = new ActiveXObject("Msxml2.XMLHTTP"); 
} catch (e) { 
//If not, then use the older active x object. 
try { 
//If we are using Internet Explorer. 
xmlhttp3 = new ActiveXObject("Microsoft.XMLHTTP"); 
} catch (E) { 
//Else we must be using a non-IE browser. 
xmlhttp3 = false; 
} 
} 
//If we are using a non-IE browser, create a javascript instance of the object. 
if (!xmlhttp3 && typeof XMLHttpRequest != 'undefined') { 
xmlhttp3 = new XMLHttpRequest(); 
} 
function makerequest3() { 
var obj = document.getElementById(objID3); 
xmlhttp3.open("GET", serverPage3); 
xmlhttp3.onreadystatechange = function() { 
if (xmlhttp3.readyState == 4 && xmlhttp3.status == 200) { 
obj.innerHTML = xmlhttp3.responseText; 
} 
} 
xmlhttp3.send(null); 
} 
