Cgi script

i’m having trouble with my registration page. Here is the link

www.ksuccf.org

click on join us. fill out the first two fields. i get pop up window and the information dosn’t get through.

here is my code

stop();
// --------------------<send from LoadVars>-------------------- \
var gatherForm:LoadVars = new LoadVars();
function sendForm() {
gatherForm.email_to = “atlnycdude23@gmail.com”;
gatherForm.visitor_phone = contactForm.userPhone.text;
gatherForm.visitor_name = contactForm.userName.text;
gatherForm.visitor_email = contactForm.userEmail.text;

gatherForm.send(“cgi-bin”,“POST”);
}
// --------------------</send from LoadVars>-------------------- \
_global.style.setStyle(“fontFamily”, “Bitstream Vera Sans”);
_global.style.setStyle(“fontWeight”, “bold”);
_global.style.setStyle(“fontSize”, 12);
_global.style.setStyle(“color”, 0x000000);

//--------------------<submit button AS>---------------------\
this.contactForm.submitBtn.btnLabel.autoSize = “center”;
this.contactForm.submitBtn.btnLabel.text = “submit”;
// onRollOver
this.contactForm.submitBtn.onRollOver = function() {
contactForm.submitBtn.gotoAndStop (2);
}
// onRollOut
this.contactForm.submitBtn.onRollOut = function() {
contactForm.submitBtn.gotoAndStop (1);
}
// onRelease
this.contactForm.submitBtn.onRelease = function() {
if (contactForm.userEmail.text == “” || contactForm.userName.text == “”) {
gotoAndStop(“error”);
} else {
sendForm();
gotoAndStop(“correct”);
}
}

I’m using ipowerweb.com as my hosting.
Please help Thanks!