function validIt(theForm) { 
	if ( theForm.keyword.value==""  && theForm.category.selectedIndex == 0)  {	
		alert("Please enter a keyword.");
  		theForm.keyword.focus();
		return false;
	}
	return true;
}
function submitThis(theForm) { 
	if ( theForm.category.selectedIndex != 0 )  {	
		theForm.action = "searchCategory.asp";
  		theForm.submit();
	}
}
function mySubmit(v1) {
	document.form1.ID.value=v1;
	document.form1.submit();
}
