// General functions for the site

function dropDown(navDiv, visBoolean) {
	document.getElementById(navDiv).style.visibility = visBoolean;
}

function acceptAgreement() {
	var checkbox = document.TOSaccept.Accept;
	
	if(checkbox.checked==false) {
		window.alert('You must accept our terms of service in order to volunteer.');
		return false;
	}
	return true;
}

function imgRoll(imgID, imgPath) {
	document.getElementById(imgID).src = imgPath;
}
