function getAjaxHandle(){
	var xmlHttp = false;
	if(navigator.appName.match("Microsoft")){
		try{
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		}catch(e){
			try{
				xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
			}catch(e){
				alert("NO AJAX FOR YOU!!!");
			}
		}
	}else{
		try{
			xmlHttp = new XMLHttpRequest();
		}catch(e){
			alert("NO AJAX FOR YOU :( !!!");
		}
	}
	return xmlHttp;
		
}