Position dynamically loaded swf CS3

I am loading an external swf onto my stage using the following code:

var imageRequest:URLRequest = new URLRequest(“gallery1.swf”);
var imageLoader:Loader = new Loader();
imageLoader.load(imageRequest);
addChild(imageLoader);

Currently the gallery1.swf loads in the upper left hand corner of the stage. How can I set the x,y coordinates of the swf? Thanks in advance for any advice.