// JavaScript Document

function clearSearch () {
	document.getElementById('dept').value = -1;
	document.getElementById('search').value = "";
}

function backSearch () {
	if (window.history.length > 1)
		window.history.back();
	else
		window.location.replace("faculty.php");
}