//window.onload=function(){
	//alert("dasdas")
	//cboCarregando_set(2,'');
//}


function selCategoria(opt){
	if (opt[opt.selectedIndex].value != ""){
		self.location.href='promocoes.asp?a=c&c='+opt[opt.selectedIndex].value;
	}
}
function Busca(from){
	var f = document.frmBuscaEcs;
	var acao = 'B'
	if(from == 0){ // uf sel
		//cboCarregando_set(2,'');
		acao = 'B';
	}
	if(from== 1){ // cid sel
		//cboCarregando_set(2,'');
		acao = 'U';
	}
	//if(from== 2){ //bairro sel
	//	acao = 'B';
	//}
	if(from== 3){ //search sel
		acao = 'B';
	}
	if(from== 4){ //ramo sel
		//cboCarregando_set(1,'');
		acao = 'C';
	}

	f.a.value = acao;
	f.submit();
}
function cboCarregando_set(num)
{
	if(num==1){obj = document.frmBuscaEcs.frmEstado;}
	if(num==2){obj = document.frmBuscaEcs.frmCidade;}
	if(num==3){obj = document.frmBuscaEcs.frmBairro;}
	
	var ate = obj.length;
	for (i=0; i<=ate; i++){
		obj.options[i] = null;
	}
	obj.options[0] = new Option("carregando...aguarde..."); 
	obj.options[0].value = 0;
	obj.options[0].selected = true;

}
function Repaginar_Conteudo(form, form_dest){

	var pag	= form.frmPagina.value;
	var rec = form.frmQuantRecs.value;
	form_dest.frmPagina.value = pag;
	form_dest.frmQuantRecs.value = rec;
	Busca(3);
}

