var myCounter = null var timerId = null
function loadCounter(){ myCounter = new Counter("my_counter_1", { digitsNumber : 5, direction : Counter.ScrollDirection.Upwards,
characterSet : Counter.DefaultCharacterSets.numericUp, charsImageUrl : "images/numeric_up_blackbg5.png", markerImageUrl : "marker.png" }); myCounter.value = 0; timerId = window.setInterval("myCounter.setValue(parseInt(myCounter.value) + 1, 300);", 500);
}
loadCounter();