Help test loading an mp3 dynamically

I can’t seem to get my mp3 files to play that are loaded on my server to work. I inserted this code in a frame to load the mp3 file:

s = new Sound();
s.loadSound(“http://vividambience.com/test.mp3”,true);

It doesn’t work but when I add this url whose mp3 file isn’t on my server

s = new Sound();
s.loadSound(“http://www.kieto.com/noholly.mp3”,true);

it does work?. here’s the direct link to the mp3 file on my serverhttp://vividambience.com/test.mp3 it plays fine and so does this url http://www.kieto.com/noholly.mp3. I think it may be the server i don’t know anyone else know why it isn’t working?