///**************************************
/// Created By		: Lakshmi Narayanan.R
/// Created Date	: 18-11-2005
/// Modified By		:
/// Modified Date	:

///Method to create the XMLHTTP object 
function XMLHTTPConn()
{
	var xmlhttp;
	
	try
	{
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(e)
		{
			try
			{
				xmlhttp=new XMLHttpRequest();
			}
			catch(e)
			{
				xmlhttp=false;
			}
		}
	}
	
	if(!xmlhttp)
	{
		return null;
	}
	else
	{
		return xmlhttp;
	}
}
///