﻿// JScript File
Busca = {
    parametro : '',
    
    enviaBusca : function(){
        this.parametro = document.getElementById('txtBusca').value.replace("&", "|");
        
        
		
		var url = window.location.toString();
        var arrURL = url.split("/");
        
        if(url.indexOf("flush") != -1 || url.indexOf("interno") != -1){
        
        if(arrURL.length - 1 == 6){
         window.location = "resultado_busca.aspx?busca=" + this.parametro;        
        }else{
         window.location = "../resultado_busca.aspx?busca=" + this.parametro;        
        }
                
        }else{
        
        if(arrURL.length - 1 == 3){
         window.location = "resultado_busca.aspx?busca=" + this.parametro;        
        }else{
         window.location = "../resultado_busca.aspx?busca=" + this.parametro;        
        }
        
        }
        
    }
    
        
}

