Skip button on mp3 player

Hi can anyone help me finish this code, i need to make a skip button that stops the track playing and skips to the next track in the php file

skip_btn.onPress = function(){

}

play_btn.onPress = function() {
if (playing == undefined or playing == false) {
if (pause == true) {
pausePos = ((slider_mc.dragMe_btn._x/100)*song.duration)/1000;
song.start(pausePos, 0);
pause = false;
} else {
song.start(0, 0);
}
playing = true;
}
};
skip_btn.onPress = function(){
song.skip
}
stop_btn.onPress = function() {
stopAllSounds();
playing = false;
pause = true;
};

Thanks