
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Organização:	SMEC - Secretaria de Educação e Cultura
	Criação:		02/09/2008
	Atualização:	02/09/2008
	Autor:		Leandro Damasceno Alves
	Contato:		leandroalves@salvador.ba.gov.br
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


// Instancia um objeto Ajax.
function connectAjax()
{
	//verifica se o browser tem suporte a ajax
	try {
		ajax = new ActiveXObject("Microsoft.XMLHTTP");
	} catch (e) {
		try {
			ajax = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (ex) {
			try {
				ajax = new XMLHttpRequest();
			} catch (exc) {
				alert("Esse navegador não tem recursos para uso deste formulário.");
				ajax = null;
			}
		}
	}
	return ajax;
}


// Carrega os dados de estados para o estado selecionado.
function getRes()
{
	/* var ajax = connectAjax();
	if (ajax) {
		// Executa a operação.
		ajax.open("post", "include/getRes.php", true);
		ajax.setRequestHeader("content-type", "application/x-www-form-urlencoded");
		var width = screen.width;
		var height = screen.height;
		var params = "width="+width+"&height="+height;
		ajax.send(params);
	} */
}
