﻿// JScript File
/*
* ajax_CreateXMLHttpRequest : This functions creates an XMLHttpRequest object    
*                             based on the browser
*/
function ajax_CreateXMLHttpRequest()
{
	var xmlHttpRequest = null;
   
	/*
	* For Firefox, Mozilla, Safari
	*/
	if (window.XMLHttpRequest)
	{
		xmlHttpRequest = new XMLHttpRequest();
	}
	/*
	* For Microsoft Internet Explorer
	*/
	else if (typeof ActiveXObject != "undefined")
	{
		xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
	}
   
	return xmlHttpRequest;               
}


