// JavaScript Document

/*AJAX functions*/
function nuevoAjax()
{ 
	var xmlhttp;
	try
	{
		xmlhttp = new XMLHttpRequest();
	}
	catch(noMO)
	{
		try
		{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(noIE)
		{
			try
			{
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch(noNa)
			{
				xmlhttp = false;
			}
		}
	}
	return xmlhttp;
}