// JavaScript Document
<!--
var xmlhttp = false;
try{
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	//alert("You are using MS IE.");
} catch	(e) {
	try{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		//alert("You are using MS IE.");
	}catch(e){
		xmlhttp = false;
	}
}	

if(!xmlhttp && typeof XMLHttpRequest != 'undefined'){
	xmlhttp = new XMLHttpRequest();
	//alert("You are not using IE");
}

function makerequest(serverPage, objID, msg, action, qs){
	alert("You are inside ajax-2.js \nfunction=makerequest\nserverpage="+serverPage+"\ntarget="+objID+"\nmsg="+msg+"\naction="+action+"\nqs="+qs);
	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);
}

//-->