function GetXmlHttpObject() { 
	var objXMLHttp=null
	if (window.XMLHttpRequest) {
		objXMLHttp=new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
	}
	return objXMLHttp
}

/**
 * Decifra o texto passado e retorna um array contendo os textos decifrado.
 * @param texto Texto cifrado.
 * @return Array()  
 */ 
function trataTexto(texto) {
  texto = texto.replace(/\+/g," ");
  texto = unescape(texto);
  
  var update = new Array();
  if(texto.indexOf('|' != -1)) 
  {
    update = texto.split('|');
  }
  
  return update;  
}