// JavaScript Document

/*AJAX functions*/
function nuevoAjax()
{// alert("uno");
	var xmlhttp;
	try
	{//alert("dos");
		xmlhttp = new XMLHttpRequest();
	}
	catch(noMO)
	{ //alert('tres');
		try
		{ //alert("cuatro");
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(noIE)
		{//alert('cinco');
			try
			{
				//alert('seis');
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch(noNa)
			{
					//alert('siete');
				xmlhttp = false;
			}
		}
	}
	return xmlhttp;
}
