/*
 * @description Initialize the ajax object.
 */
var ajax = false;
var ajax1 = false;
var ajax2 = false;
var ajax3 = false;
try
{
	ajax = new XMLHttpRequest();
	ajax1 = new XMLHttpRequest();
	ajax2 = new XMLHttpRequest();
	ajax3 = new XMLHttpRequest();
}
catch (e)
{
	try
	{
		ajax = new ActiveXObject('Msxml2.XMLHTTP');
		ajax1 = new ActiveXObject('Msxml2.XMLHTTP');
		ajax2 = new ActiveXObject('Msxml2.XMLHTTP');
		ajax3 = new ActiveXObject('Msxml2.XMLHTTP');
	}
	catch (e)
	{
		try
		{
			ajax = new ActiveXObject('Microsoft.XMLHTTP');
			ajax1 = new ActiveXObject('Microsoft.XMLHTTP');
			ajax2 = new ActiveXObject('Microsoft.XMLHTTP');
			ajax3 = new ActiveXObject('Microsoft.XMLHTTP');
		}
		catch (e)
		{
			alert('xmlHttp: AJAX failed to initialize.');
		}
	}
}
