function show(id) {
	document.getElementById(id).style.visibility = "visible";
}

function hide(id) {
	document.getElementById(id).style.visibility = "hidden";
}

function goto() {
	loc = document.FAQ.faq.options[document.FAQ.faq.selectedIndex].value;
	location.href = loc;
}