function nuevoAjax(){
	var xmlhttp=false;
	try {
		//creacion del objeto ajax para navegadores distintos a ie
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
			//creacion del objeto ajax para ie
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E){
			xmlhttp = false;
		}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined'){
		xmlhttp = new XMLHttpRequest();
		
	}
	return xmlhttp;
}


