<!--
function ScrollProgressiveTotals(prId){
		var objstr = "progressive"+prId;
		var itotal = 0;
			for(i=1;i<=NumberOfProgr;i++){
				JP[i] += (Inc[i]);
				itotal += JP[i];
			}
			// obj.value = num2dollar(itotal/100);
			document.getElementById(objstr).innerText = num2dollar(itotal/100);
		window.setTimeout("ScrollProgressiveTotals("+prId+")",1000); 
}

function init() {
   ScrollProgressiveTotals(12);
}
//-->
