Problem with music player

i’m having trouble with my music player, i uploaded the mp3 i wanted to play to tripod so i have all my action script right but it wont play ,
heres my action script for the play button-
on (release) {
if (_root.mySlider.complete == 1) {
_root.mySlider.mySound.start(0, 99);
}
}

my actionscript for the volume slider-
onClipEvent (load) {
mySound = new Sound();
mySound.loadSound("_Wet.mp3", false);
}
onClipEvent (enterFrame) {
downloaded = mySound.getBytesLoaded();
total = mySound.getBytesTotal();
if (downloaded != total) {
_root.dl = “downloading song…”;
} else {
complete = 1;
_root.dl = “”;
}
mySound.setVolume(_root.volume);
}
and the link to the player on tripod is-
http://madeulook3.tripod.com/volume_user_MUL2.html

heelpppp