//header('Content-type: text/html; charset=windows-1251');
		
	function ajax_CreateRequest(){
	var request=null; //variable object requesting	
	//create object request
		try{
			request=new XMLHttpRequest();
		}catch(err){
			try{
				request=new ActiveXObject("Msxm12.XMLHTTP");
			}catch(err1){
				try{
					request=new ActiveXObject("Microsoft.XMLHTTP");
				}catch(err2){
					alert("No create object requesting."+err2.description);
				}
			}
		}
			return request;
	}
	
	