Adding a function to a holder?

Hello everyone,

I’m creating an empty movieclip on my main timeline
and loading a picture in it.
Do you have any idea how I could add a pop-up (HTML)
by clicking on that newly created movieclip? :pa:

Code

// creates an empty movieclip called holder
_root.createEmptyMovieClip(“holder”, 4);
// loads picture in movieclip
holder.loadMovie(“image1.jpg”);
// positions the movie holder
_root.holder._x = 276;
_root.holder._y = 85;

Thanks in advance! :thumb: