function SRInit1_validate(SR1form) {
	if (SR1form.FORM_CATEGORY.options[SR1form.FORM_CATEGORY.options.selectedIndex].value == "") {
		alert ("You must select a category to proceed.");
		return false;
	}
	
	if (SR1form.FORM_TOPIC.options[SR1form.FORM_TOPIC.options.selectedIndex].value == "") {
		alert ("You must select a topic to proceed.");
		return false;
	}
	return true;
}

function SRInit1_validate_tools_app(SR1form) {
	if (SR1form.FORM_TOPIC.options[SR1form.FORM_TOPIC.options.selectedIndex].value == "") {
		alert ("You must select a topic to proceed.");
		return false;
	}
	return true;
}
