Timer help!

I am using this code:
this.onEnterFrame = function() {
if (stopped != true) {
myMusicDurationText = _root.myMusic.s.duration/1000;
myMusicPositionText = _root.myMusic.s.position/1000;
}
};

This shows time in milliseconds, how do i change to seconds? I do i make it in the format of:
00:00
Minutes:seconds

Thanks alot…