// JavaScript Document

<!-- MAKE REQUEST 1 -->

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); 
} 

<!-- MAKE REQUEST 2 -->

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 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 defaultQuickLinks() { 
var obj = document.getElementById('quickLinksRight'); 
xmlhttp3.open("GET", 'Pages/futureStudents.php'); 
xmlhttp3.onreadystatechange = function() { 
if (xmlhttp3.readyState == 4 && xmlhttp3.status == 200) { 
obj.innerHTML = xmlhttp3.responseText; 
} 
} 
xmlhttp3.send(null); 
} 



DD_roundies.addRule('.rounded', '15px');
DD_roundies.addRule('.rounded10', '10px');

DD_roundies.addRule('.rounded3', '0px 0px 0px 15px');

/* varying radii, IE only */
//DD_roundies.addRule('.something_else', '10px 4px');

/* varying radii, "all" browsers */
DD_roundies.addRule('.rounded', '15px', true);
DD_roundies.addRule('.roundedtop', '15px 15px 0px 0px', true);
DD_roundies.addRule('.roundedbottom', '0px 0px 15px 15px', true);
DD_roundies.addRule('.roundedtop10', '10px 10px 0px 0px', true);

DD_roundies.addRule('.roundtop', '5px 5px 0px 0px', true);
DD_roundies.addRule('.roundbot', '5px 5px 0px 0px', true);
	  



	  
