No sound....in my movie

I am getting no sound when I test my loaded movie.
The song is supposed to play when the user hits the play button which also makes the other movies play within the clip as well.

I have no idea what code formatting is but I will paste it anyway…so you can peep it out…

stop();
_root.contents.speaker.stop();
_root.contents.speaker2.stop();
song = new Sound();
song.attachSound(“DNS_Say My Name Remix”)
_root.contents.playButton.onRelease = function() {
song.start();
_root.contents.speaker.play();
_root.contents.speaker2.play();
song.onSoundComplete = function() {
_root.contents.speaker.stop();
_root.contents.speaker2.stop();
};
};

drew