	function addItUp(obj){
	
		var total = 0;
		for (var x=1; x < 13; x++){
//			alert(obj.question[x].checked);
			if(eval('obj.question'+x+'.checked')){total++};
		}
 
		var strMsg;
		
		if(total >= 4){
			strMsg = 'You related to '+total+' examples.';
			strMsg=strMsg+'\n\nBy relating to 4 or more of these examples,';
			strMsg=strMsg+'\nyou probably are having trouble with alcohol.';
			strMsg=strMsg+'\nWhy do we say this?  Because thousands of people';
			strMsg=strMsg+'\nin A.A. have said so for many years.  They found out';
			strMsg=strMsg+'\nthe truth about themselves - the hard way.\n';
			strMsg=strMsg+'\nBut again, only you can decide whether you think';
			strMsg=strMsg+'\nA.A. is for you.  Try to keep an open mind on the';
			strMsg=strMsg+'\nsubject.  If the answer is YES, we will be glad to';
			strMsg=strMsg+'\nshow you how we stopped drinking ourselves.  Just call.\n';
			strMsg=strMsg+'\nA.A. does not promise to solve your life\'s problems.';
			strMsg=strMsg+'\nBut we can show you how we are learning to live';
			strMsg=strMsg+'\nwithout drinking "One Day At A Time."  We stay away';
			strMsg=strMsg+'\nfrom that "first drink."  If there is no first one,';
			strMsg=strMsg+'\nthere cannot be a tenth one.  And when we got rid of';
			strMsg=strMsg+'\nalcohol, we found that life became much more manageable.\n';
			strMsg=strMsg+'\nCopyright by The A.A. Grapevine, Inc.; used with permission';
		} else {
			if(total==1){
				strMsg = 'You only related to 1 example.';
				strMsg = strMsg+'\nYou may not have a problem with alcohol.';
			} else {
				if(total==0){
					strMsg = 'You did not relate to any examples.';
				} else {
					strMsg = 'You related to '+total+' examples.\n';
					strMsg = strMsg + '\nYou may want to start paying more';
					strMsg = strMsg + '\nattention to your drinking.';
				}
			}
			
		}
	
		alert(strMsg);
	}

