function KeepCount() {
	var NewCount = 0

	if (document.ballot.adams.checked)    {NewCount = NewCount + 1}
	if (document.ballot.zucker.checked)   {NewCount = NewCount + 1}
	if (document.ballot.blum.checked)     {NewCount = NewCount + 1}
	if (document.ballot.bradbury.checked) {NewCount = NewCount + 1}
	if (document.ballot.krout.checked)    {NewCount = NewCount + 1}
	if (document.ballot.burford.checked)  {NewCount = NewCount + 1}
	if (document.ballot.rosen.checked)    {NewCount = NewCount + 1}
	
	if (NewCount == 5) {
		alert('You can only vote for up to four candidates.\nYour recent selection will be unchecked now.');
		document.ballot;
		return false;
	}
}

function CheckRadio() {
	var y = document.getElementById('1');
	var n = document.getElementById('0');
	
	if( (y.checked == false) && (n.checked == false) ) {
		alert("Please vote Yes or No for the proposed by-laws \n amendment change at the top of the page.");
		return false;
	}
	return true;
}