// AJAX

function openajax() /* Cria a Funcao*/{

	var ajax; /* Defini a Variável */
	
	try{
		
		ajax = new XMLHttpRequest(); /* Tenta Instanciar o Objeto */
		
	}catch(ee){
		
		try{
			
			ajax = new ActiveXObject("Msxm12.XMLHTTP"); /* Se Nao Conseguiu o Anterior Tenta esse*/
			
		}catch(e){
			
			try{
				
				ajax = new ActiveXObject("Microsoft.XMLHTTP"); /* E o memso se repete aqui*/
				
			}catch(E){
				
				ajax = false; /* Se nao conseguiu em Nenhum retorna False pois o Navegador Usado nao Suporta Ajax*/
				
			}
			
		}
		
	}
	
    return ajax; /* Retorna um Boleano*/
	
}

