Hi Can anyone see what is wrong here
I can't see the attached movie "officeDivider"

regards T


officeMC = officeAndContactMC.createEmptyMovieClip("officeMC" +k, 2);
officeMC.x = cityX;
officeMC.y = cityY;
officeMC.officeMap = officeMap;
officeMC.office = officeName.toUpperCase();
officeMC.createTextField("_office",1,0,textFieldHe ight,scWidth,textFieldHeight);
officeMC._office.text = officeName;
officeMC._office.border = true;
officeMC._office.setTextFormat(boldFieldFormat);
officeMC.onRelease = function() {
setSearchHeaderText(this.office + " INFO")
loadMap(this.x, this.y, this.officeMap);
}

phoneMC = officeAndContactMC.createEmptyMovieClip("phoneMC"+ k, 3);
phoneMC.createTextField("_phone",1,0,textFieldHeig ht*2,88,textFieldHeight);
phoneMC._phone.text = "Telefon "+ officePhone;
phoneMC._phone.border = true;
phoneMC._phone.setTextFormat(normalFieldFormat);

if (officeEmail != undefined) {
emailMC = officeAndContactMC.createEmptyMovieClip("emailMC", 4);
emailMC.email = officeEmail;
emailMCx = phoneMC._phone._x + phoneMC._phone._width;
emailMC.createTextField("_email",1,emailMCx,textFi eldHeight*2,50,textFieldHeight);
emailMC._email.text = "- E-post";
emailMC._email.border = true;
emailMC._email.setTextFormat(normalFieldFormat);
emailMC.onRelease = function() {
getURL("mailto:"+ this.email);
}
}




officeDiv = officeAndContactMC.attachMovie("officeDivider", "officeDivider2", 5);