[AS 2 Flash CS3] Load jpg from library into Empty MC

I am suddenly feeling really dumb when it comes to actionscript because something I think would be so simple is not really working out for me. I am trying to load a jpg that is in my library to an empty movie clip on the stage when a button is clicked.

Here’s the code I have tried on the button:

on (release) {
    graph2_mc.temp.attachMovie("RLC01z1","test",10);
}

The instance name of my empty movie clip on the stage is graph2_mc
The IDName of the bitmap(jpg) in the library is RLC01z1

As far as the .temp before attachMovie I just tried that after it wasn’t working without it. I technically don’t really know what it does. But it didn’t work anyway so I figured what the hay.

Any help would be appreciated. Thanks