//Calculates the score to the personality quiz. Last Modified: 05/24/07
function getScore() {
	var total = 0;
	var input = document.getElementsByTagName("INPUT");
	for (x=0; x<input.length; x++) {		
		if (input[eval(x)].type=="radio" && input[eval(x)].checked) {
			total += Number(input[eval(x)].value);
		}
	}
	document.getElementById("scoreResult").value = total;
}

