<!-- Begin

function alphaform(alphaindex) {

	document.alphaindexform.alphaindex.value = alphaindex;
	document.alphaindexform.submit()
}

function validate_categorysearch() {

	if (document.searchform.category.value == "")
	{
		alert("Please select a category");
		return;
	}
	document.searchform.searchtext.value = "";
	document.searchform.submit()
}

function validate_searchsearch() {

	if (trimString(document.searchform.searchtext.value) == "")
	{
		alert("Please provide some search words or phrases");
		return;
	}
	document.searchform.category.value = "";
	document.searchform.submit()
}

//  End -->

