var count:int = 2013;
var myTimer:Timer = new Timer(100,count);
myTimer.addEventListener(TimerEvent.TIMER, countdown);
myTimer.start();

function countdown(e:TimerEvent):void {
...