Restrarting a sound on button click

Hi,
I have my sound file in my library. and i have placed it in one layer. Now i have two buttons to stop and start a movie. When i click the stop button my movie and sound both stops. I use the followng code
on (release) {
tellTarget (“bq”) { //bq is the movie clip
stop();
stopAllSounds();
}
stop();
}

on (release) {
tellTarget (“bq”) {
play();
}
tellTarget (“music”) { //I dont know how to specify the
//target for the music file.this gives
//error.I even gave it a linkage in the lib
//but that also did not worked
play();
}
play();
}

can anybody plaese help. I jsut want to know how to restart the sound.