//esta é a função Ajax. Sem ela, nada acontece.
function openAjax()
{
	var ajax;
	try
	{
		ajax = new XMLHttpRequest(); // XMLHttpRequest    para Firefox, Safari, dentre outros.
	}
	catch(ee)
	{
		try
		{
			ajax = new ActiveXObject("Msxml2.XMLHTTP"); //Para o Internet Explorer
		}
		catch(e)
		{
			try
			{
				ajax = new ActiveXObject ("Microsoft.XMLHTTP"); // Para o Internet Explorer
			}
			catch(E)
			{
				ajax = false;
			}
		}
	}

	return ajax;
}
