Email popup

I have a form for my contact page. I’d like all required feilds to be sent. I have it set up where if they aren’t filled in there is a e-mail required message that pops up in the email fill in feild. What I’d like to do and I’ve seen before is have a little pop up that fades in on top of the form with the same message.

Does anyone have any leads or tutorials/FLA’s I could look at? I’ve search the forum but have not found anything. Thanks in advance.

By the way, I’m using PHP serverside scripting.

Thanks

Basically just make a movieclip with an animation that comes up to tell forms weren’t filled out. Just have it on the button action like :

if (_root.name_txt="") {
_root.errorMovie.gotoAndPlay(1);
}

Something to that degree.