// search form validation function
function submitValid(form) {
	if (form.keyword.value.length == 0) {
		showError(form.keyword, "Please enter your search criteria.");
		return false;
	}
}
// displays alert box with passed message and gives focus to control with invalid data
function showError(ctrl, msg) {
	ctrl.focus();
	alert(msg);
}
