/*

Author: Steven McTainsh (smctainsh.com)

*/

var total = 22; // The total number of questions

function updateTotals()
{
var yes = 0;

	for(var i = 1; i <= total; i++)
	{
		if(document.getElementById('q' + i + '-yes').checked)
		{
			yes++;
		}
	}
	
document.getElementById('totalcount').innerHTML = yes/* + " / " + total*/;

}

function setClicks()
{

	for(var i = 1; i <= total; i++)
	{
		document.getElementById('q' + i + '-yes').onclick = updateTotals;
		document.getElementById('q' + i + '-no').onclick = updateTotals;
	}
}