// JavaScript Document
function makeReq()
{
	var xmlHttpReq = null;
	
	if(window.XMLHttpRequest)
	{
  		xmlHttpReq = new XMLHttpRequest();
	}
	else if(window.ActiveXObject)
	{
		try{
			xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");
    	}catch(e){
        	try{
				xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP");
        	}catch(e){
          		try{
					xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
        		}catch(e){
          			xmlHttpReq = false;
       			}
        	}
		}
	}
	return xmlHttpReq;
}