/* ---------- jQuery Events ---------- */

jQuery(document).ready(function() {

	// validate form only when performing CVCollegeFacts search - it seems that pressing enter in textfield is the same as clicking enter on FF/IE. this behavior may not be the same for all browsers.
	jQuery('input#cvnamebtn').bind('click', validateCollegeFactsName);
	jQuery('input#cvstatebtn').bind('click', validateCollegeFactsPlace);

});


/* ---------- Functions ---------- */

function validateCollegeFactsName() {
	var form = document.forms[0];

	if (form.contains.value == '') {
		alert('Please provide a name.');
		return false;
	}

	return true;
}

function validateCollegeFactsPlace() {
	var form = document.forms[0];

	if (form.state.options[form.state.selectedIndex].value == '') {
		alert('Please provide a place.');
		return false;
	}

	return true;
}
