function countTotal() {
	var totalValue = 0;
	for (var i=0; i < document.frmChooseFund.q01.length; i++) {
	   if (document.frmChooseFund.q01[i].checked) {
		  totalValue = totalValue + parseInt(document.frmChooseFund.q01[i].value);
	  }
   }
   for (var i=0; i < document.frmChooseFund.q02.length; i++) {
	   if (document.frmChooseFund.q02[i].checked) {
		  totalValue = totalValue + parseInt(document.frmChooseFund.q02[i].value);
	  }
   }
	for (var i=0; i < document.frmChooseFund.q03.length; i++) {
	   if (document.frmChooseFund.q03[i].checked) {
		  totalValue = totalValue + parseInt(document.frmChooseFund.q03[i].value);
	  }
   }
	for (var i=0; i < document.frmChooseFund.q04.length; i++) {
	   if (document.frmChooseFund.q04[i].checked) {
		  totalValue = totalValue + parseInt(document.frmChooseFund.q04[i].value);
	  }
   }
	for (var i=0; i < document.frmChooseFund.q05.length; i++) {
	   if (document.frmChooseFund.q05[i].checked) {
		  totalValue = totalValue + parseInt(document.frmChooseFund.q05[i].value);
	  }
   }		   		   		   
   document.getElementById('txtTotalValue').innerHTML = totalValue;
}

