Textfield inside a mc?

Well, I have this code for my asp mailform. What I want is to be able to set onRollover on my textfields. It doesn’t work directly on the textfields so I have to convert to mc and so on. That I know, what I cant figure out is how to write in this code when the textfields are inside an mc? Anyone?


this.send_mc.onRelease = function() {
	if (!adress.length || adress.indexOf("@") == -1 || adress.indexOf(".") == -1) {
	emailStatus = "Your e-mail, please";
 	}
 	else if (!name.length) {
 	emailStatus = "Your name, please";
 	}
 	else if (!message.length) {
 	emailStatus = "Say something";
 	}
 	else 
	{
 	loadVariablesNum ("ASPMail.asp", "0", "POST");
 	emailStatus = "Message sent";
 	}
}