Filepaths on server with sound object

Hi guys,

I have a bit of a problem with file paths: I have been making an MP3 player using the sound object and feeding it a url on the server:

url = “tracks/whatever.mp3”
s = new sound();
s.loadSound(url);

is there any way of giving it a real path name on the web server (c:/mydir/mytracks/whatever.mp3)

url = “c:/mydir/tracks/whatever.mp3”
s = new sound();
s.loadSound(url);

whenever i try something like this it won’t create the sound object (i think its looking for the path on the clients pc, not the server… but i’m not sure…)

anyone have any ideas?
-Si