// ActionScript Remote Document
function initAjax()
{
	var xmlHttp=false;
	try{
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	}catch(e){}
	if(!xmlHttp)
	try{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}catch(e2){}
	if(!xmlHttp&&XMLHttpRequest!='undefined') xmlHttp=new XMLHttpRequest();
	return xmlHttp;
	
}
