function GetTheListCtrl()
{
var theList = null;
var sceneBox = scene.getBoxById("embeddedScene1");
if (sceneBox)
{
var theScene = sceneBox.scene;
if (theScene)
{
theList = theScene.getBoxById("testListCtrl");
}
}
return theList;
}