function HTTPRequest()
{
	var Ajax = false;
	
	try
	{
		Ajax = new ActiveXObject("Msxml2.XMLHTTP"); 
	}
	catch
	(e)
	{
		try
		{
			Ajax = new ActiveXObject("Microsoft.XMLHTTP"); 
		}
		catch (E)
		{
			Ajax = false; 
		}
	}
	
	if  (!Ajax && typeof  XMLHttpRequest != 'undefined' )
	{
		try
		{
			Ajax = new  XMLHttpRequest();
		}
		catch (e)
		{
			Ajax = false ; 
		}
	} 
	return Ajax;
}