// cfxJavaScript www.Lynxcraft.com

function Ajax(){
	var xmlhttp=false; 
	/* Compatibilidad con FireFox, Opera y cualquier otro BUEN navegador */
	  if(typeof(XMLHttpRequest) != 'undefined'){
		try{
		  xmlhttp = new XMLHttpRequest();
		}
		catch(e){ }
	  }
	  else{
		/* Compatibilidad [ IE ] */
		try{
		  xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
		}
		catch(e){
		  xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
		}
	  }
	  return xmlhttp;
}
