function show_hide(){

var id = document.getElementById("b_text");
if (!id) return;

if (id.style.visibility == "hidden") {
	id.style.visibility = "visible";
} else {
	id.style.visibility = "hidden";
}

}

setInterval(show_hide,500);
