
function browseWithCategory() {
	if (document.FaqForm.category.value != "") {
		if (document.FaqForm.subcategory.value != "") {
			document.FaqForm.subcategory.value = "";
		}
		document.FaqForm.action = "/vbmk/browsefaq.do";
		document.FaqForm.submit();
	}
}
function filterSubcategory() {
	if (document.FaqForm.category.value != "") {
		document.FaqForm.action = "/vbmk/browsefaq.do";
		document.FaqForm.submit();
	}
}

