Photogallery and xml problem

[FONT=Times New Roman][SIZE=3]Hi,[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]I am trying to build one xml photogallery. But I cannot load the pictures. There is three different photo floders (3 D, Nature and Underwater) into photos folder. At the very beginning I am trying to load the first photo of the “3D” folder. Then if anyone selects “Nature” folder from the drop down menu then the fist photo of the “Nature” folder will be loaded that means that photo will be loaded as per the selection of the folder. There is also one back button and one forward button. The functionability of these two will be done by me later. But I cannot load the first photo. Where am I going wrong? Can anybody give me any suggestion? I am eagerly waited for your valuable suggestions. Please help me. As the fla file is very big I cannot upload the same.The error is " Loading file : /// photos/3D/01.jpg" and so on. Can anybody give some hints where I am doing wrong. Please help me. [/SIZE][/FONT]

Here is the action script file.

// declaring multiple varibles to move withing the photogallery,
var RootNode:XMLNode;
var selectedGallery:String;
var photoPosition:Number;
var GalleryNode:XMLNode;
var PhotoNode:XMLNode;

var photoXML:XML = new XML();
photoXML.ignoreWhite = true;
photoXML.onLoad = loadPhotos;
photoXML.load(“photoGallery.xml”);
// creating event listener for change in the combo box selection
var CBOListener:Object = new Object();
CBOListener.change = loadGallery;
gallery_cb.addEventListener(“change”, CBOListener);
// loading xml and loadPhotos
function loadPhotos(success:Boolean):Void {
if (success) {
RootNode = this.firstChild;
loadCombo();
} else {
trace(“Error”);
}
}
// Loading location name in the Combo box. The loadCobo function is here
function loadCombo():Void {
var galleryName:String;
gallery_cb.addItem("—Select—");
for (var i:Number = 0; i<RootNode.childNodes.length; i++) {
galleryName = RootNode.childNodes*.attributes.locationName;
gallery_cb.addItem(galleryName);
}
}
// load gallery function to loacte each location.
function loadGallery(evtObj:Object):Void {
var galleryName:String;
if (evtObj.target.selectedItem.label !="-- Select --") {
selectedGallery = evtObj.target.selectedItem.label;
for (var i:Number=0; i< RootNode.childNodes.length; i++) {
galleryName = RootNode.childNodes*.attributes.locationName;
if (galleryName == selectedGallery) {
GalleryNode = RootNode.childNodes*;
photoPosition=0;
loadPhoto(photoPosition);
break;
}
}
}
else {
empty_mc.unloadMovie();
caption_txt.text = “”;
comment_txt.htmlText = “”;
}
}
// load photo function to load image and text and comments into respective areas…
function loadPhoto(nodePos:Number):Void {
PhotoNode = GalleryNode.childNodes[nodePos];
var filename:String = PhotoNode.attributes.filename;
var caption:String = PhotoNode.attributes.caption;
var comments:String = PhotoNode.firstChild.nodeValue;
empty_mc.loadMovie("/photos/3 D"+filename);
caption_txt.text = caption;
comment_txt.html =true;
comment_txt.htmlText =comments;
}

Here is the xml file

[COLOR=#0000ff]<?xml version=“1.0” encoding=“UTF-8” standalone=“yes” ?>[/COLOR]
[[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]](file:///J:/Kirupa/Fla%20and%20xml/fla%20and%20xml/photoGallery.xml#) [COLOR=#0000ff]<[/COLOR][COLOR=#990000]photoGallery[/COLOR][COLOR=#0000ff]>[/COLOR]
[[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]](file:///J:/Kirupa/Fla%20and%20xml/fla%20and%20xml/photoGallery.xml#) [COLOR=#0000ff]<[/COLOR][COLOR=#990000]location locationName[/COLOR][COLOR=#0000ff]="[/COLOR]3D[COLOR=#0000ff]">[/COLOR]
[COLOR=#0000ff]<[/COLOR][COLOR=#990000]photo filename[/COLOR][COLOR=#0000ff]="[/COLOR]first.jpg[COLOR=#0000ff]"[/COLOR][COLOR=#990000] caption[/COLOR][COLOR=#0000ff]="[/COLOR]Cannot Load[COLOR=#0000ff]">[/COLOR]Again Failure[COLOR=#0000ff]</[/COLOR][COLOR=#990000]photo[/COLOR][COLOR=#0000ff]>[/COLOR]

[COLOR=#0000ff]</[/COLOR][COLOR=#990000]location[/COLOR][COLOR=#0000ff]>[/COLOR]

[[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]](file:///J:/Kirupa/Fla%20and%20xml/fla%20and%20xml/photoGallery.xml#) [COLOR=#0000ff]<[/COLOR][COLOR=#990000]location locationName[/COLOR][COLOR=#0000ff]="[/COLOR]Nature[COLOR=#0000ff]">[/COLOR]
[COLOR=#0000ff]<[/COLOR][COLOR=#990000]photo filename[/COLOR][COLOR=#0000ff]="[/COLOR]01.jpg[COLOR=#0000ff]"[/COLOR][COLOR=#990000] caption[/COLOR][COLOR=#0000ff]="[/COLOR]Really tiring.[COLOR=#0000ff]">[/COLOR]I Cannot do it. Please help me.[COLOR=#0000ff]</[/COLOR][COLOR=#990000]photo[/COLOR][COLOR=#0000ff]>[/COLOR]

[COLOR=#0000ff]</[/COLOR][COLOR=#990000]location[/COLOR][COLOR=#0000ff]>[/COLOR]

[[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]](file:///J:/Kirupa/Fla%20and%20xml/fla%20and%20xml/photoGallery.xml#) [COLOR=#0000ff]<[/COLOR][COLOR=#990000]location locationName[/COLOR][COLOR=#0000ff]="[/COLOR]Underwater[COLOR=#0000ff]">[/COLOR]
[COLOR=#0000ff]<[/COLOR][COLOR=#990000]photo filename[/COLOR][COLOR=#0000ff]="[/COLOR]01.jpg[COLOR=#0000ff]"[/COLOR][COLOR=#990000] caption[/COLOR][COLOR=#0000ff]="[/COLOR]Failure[COLOR=#0000ff]">[/COLOR]I need one good teacher.[COLOR=#0000ff]</[/COLOR][COLOR=#990000]photo[/COLOR][COLOR=#0000ff]>[/COLOR]

[COLOR=#0000ff]</[/COLOR][COLOR=#990000]location[/COLOR][COLOR=#0000ff]>[/COLOR]

[COLOR=#0000ff]</[/COLOR][COLOR=#990000]photoGallery[/COLOR][COLOR=#0000ff]>[/COLOR]