       function ScrollProgressiveCounters(prId)
       {
        JP[prId] += (Inc[prId]);	
        document.getElementById("progressive"+prId).innerHTML = num2dollar(JP[prId]/100);
        window.setTimeout( "ScrollProgressiveCounters("+prId+")",1000); 
       }
    
       function WriteCounter(counterId) 
       {
        document.write("<table cellspacing='0' cellpadding='0' border='0' width='100%'><tr align='center'><td align='center'><span name='progressive" + counterId + "' id='progressive" + counterId + "' class='ProgressiveText' ></span> </td></tr></table>");
        setTimeout("ScrollProgressiveCounters(" + counterId + ")", 1000);
       }