// JavaScript Document
function mudarPosicaoPergunta(id_pergunta, id_pergunta_troca, fl_opcao){
	location = 'm_perguntas_frequentes/post/frm_mudar_perguntas.php?&id_pergunta='+id_pergunta+'&id_pergunta_troca='+id_pergunta_troca+'&fl_opcao='+fl_opcao;		
}

function exibirPergunta(id_pergunta, fl_exibir){
	location = 'm_perguntas_frequentes/post/frm_exibir_perguntas.php?id_pergunta='+id_pergunta+'&fl_exibir='+fl_exibir;	
}

function editarPergunta(id_pergunta){
	location = 'admin_index.php?module=m_perguntas_frequentes&pag=adm_perguntas_frequentes&opcao=editar&id_pergunta='+id_pergunta;
}

function excluirPergunta(id_pergunta){
	
	if(confirm("Você está prestes as excluir essa pergunta do banco de dados.\nFazendo isso não será mais possível recuperá-la.\nDeseja prosseguir?")){
		location = 'm_perguntas_frequentes/post/frm_excluir_pergunta.php?id_pergunta='+id_pergunta;
	}	
}

