
function NewTopicFunct(){

document.StartNew.submit();

}

function DoSearch(){

document.VerityForm.keywords.value = document.UtilForm.keywords.value;

if(document.UtilForm.SearchWhere[0].checked)
	document.UtilForm.submit();
else
	document.VerityForm.submit();

}

function ChangeCat(){

var i, j;
i=document.NewCategory.NewCat.selectedIndex;
j=document.NewCategory.NewCat.options[i].value;
window.location.href="Ask10.cfm?id=" + j;

}

