Post form via ASP

whats wrong with this AS - it dosen’t work! The ASP file it refers to is okay… it posts an email when combined with an html-form…???

on (release) {
if (!Email.length || Email.indexOf("@") == -1 || Email.indexOf(".") ==
-1) {
EmailStatus = “Indtast din e-mail adresse”;
} else if (!quest1.length) {
EmailStatus = “Svar på spørgsmål 1”;
} else if (!quest2.length) {
EmailStatus = “Svar på spørgsmål 2”;
} else if (!Navn.length) {
EmailStatus = “Indtast dit navn”;
} else if (!Adresse.length) {
EmailStatus = “Indtast din adresse”;
} else if (!By.length) {
EmailStatus = “Indtast dit postnr. og by”;
} else if (!Telefon.length) {
EmailStatus = “Indtast dit telefonnr.”;
} else {
loadVariablesNum(“ASPMail.asp”, “0”, “POST”);
EmailStatus = “Tak for dit svar…”;
gotoAndPlay(“sendt”);
}
}

I would be very thankful if anyone could help me with this…

simondo