Jpeg not loading in container

Hi,

I have created a flash gallery where I am trying to fetch all thumbnails and large images from external folders. I am using the following code to load image blow-ups in a container:

this.onRelease = function() {
_root.largepic_mc(“container”);
_root.largepic_mc.loadMovie(percorsoFoto+quadrati+".jpg");
_root.largepic_mc._x = 350;
_root.largepic_mc._y = 15;
_root.largepic_mc._xscale = 45;
_root.largepic_mc._yscale = 45;

While this works offline, when I upload the files, the thumbs are fetched from the image folder but not the large images. If there was an issue with the path, then thumbs should also not load.

What am I doing wrong here? Any ideas?

TIA,
Tarun