attachSound problem

Hi all,

I am using this code to attach sound into the mc. Normally it is working to me, but I tried to add it to the mail form and there it’s working only on in my [color=darkred]computer[/color]. When I put it on the [color=darkred]server, [/color][color=black]it doesn’t[/color] work to me.
Does anyone know why it is so?

[color=navy]this.submit.onRelease = function() {
if (!Name.length) {
Status = “Please Enter Your Name”;
ERORNois.start();[/color]
[color=navy] } else if (!Email.length || Email.indexOf("@") == -1 || Email.indexOf(".") == -1) {
Status = “Please Enter A Valid E-MAIL Address”;
ERORNois.start();[/color]
[color=navy] }
};[/color]
[color=navy][/color]
[color=navy]ERORNois = new Sound();
ERORNois.attachSound(“pip2”);
[/color]