What am I doing wrong here?

Hello all of you!
I’m quite new in Flas and Actionscript (2), and I’ve got a (probably) minor problem, which I just can’t solve…

I’ve got a flash thing, with, as extra, a ‘help’ button in the corner. This button has this code:

on (release) {
	help1.visible = true
	help2.visible = true
	help3.visible = true
	help4.visible = true
}

help1 till 4 are 4 symbols, out of which the help ‘popup’ is build. 1 is the bg, 2 and 3 is text, 4 is a small X to close, with this code:

on (release) {
	help1.visible = false;
	help2.visible = false;
	help3.visible = false;
	this.visible = false;
}

Linkages, names and instances of each help* are all the same, help + number.
The help1 till four are on a separate layer. I’m using Adobe Flash Possessional CS5, by the way.

Thanks in advance!