<!--
function ScrollProgressiveTotals(prId){
		var objstr = "progressive"+prId;
		var itotal = 0;
			for(i=1;i<=15;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 ScrollProgressiveCountersSPAN(prId){
        var objstr = "progressive" + prId;
        if (objstr) {
                JP[prId] += (Inc[prId]);
				document.getElementById(objstr).innerText = num2dollar(JP[prId]/100);
        }
        window.setTimeout( "ScrollProgressiveCountersSPAN("+prId+")",1000);
}


function init() {
   //ScrollProgressiveTotals(100);
}
//-->