UI Components (checkboxes)

Hi,

I have a four checkboxes in my contact form. Here’s the code in the function layer. I’m pretty sure this code below is correct. I believe the problem is my CGI-file (attachment).

function Display© {
if (c.getValue()) {
_root.result = " Kyllä";
} else {
_root.result = " Ei";
}
phone2.setChangeHandler(“Display”);
letter.setChangeHandler(“Display”);
email2.setChangeHandler(“Display”);
permission.setChangeHandler(“Display”);
}

Thanking in advance