// JavaScript Document

function prf_mostrar(id) {
	var tag = document.getElementById('pregunta_' + id);
	if (tag) {
		tag.style.display=(tag.style.display=='')?'none':'';
	}
}

function buscaPreguntaFrecuente(texto){
	window.location.href= "?textoBuscadorPF=" + texto
}