function ajax(){
var xmlhttp = false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); //IE para versiones superiores a 5.0
	} catch (e) {
		try {
	  		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); //IE para versiones inferiores a 5.0
		} catch (e) {
		 	try {
				xmlhttp = new XMLHttpRequest(); //Firefox, Safari, etc...
			} catch (e) {
					xmlhttp = false;			
			}
		}
	}
	return xmlhttp;
}
