comboBox component question

hello.

I have an external swf that loads into a container.

The external swf uses the comboBox component. While it works fine on its own, when I load the the swf into the container the comboBox no longer works.

Does anyone have any suggestions as to what is wrong?

This code resides on the comboBox in the external swf.

on(change)
{
if ( this.selectedItem.label == “google” )
{
getURL(“http://www.google.com","_blank”);
}
else if ( this.selectedItem.label == “microsoft” )
{
getURL(“http://www.microsoft.com","_blank”);
}
else if ( this.selectedItem.label == “kirupa” )
{
getURL(“http://www.kirupa.com","_blank”);
}
}

Thanks in advance.