function ChangeDataIfPopped()
{
var bx = scene.getBoxById("sampleMenuCtx");
if (bx && bx.popped)
{
var otherBx = scene.getBoxById("backBox");
if (otherBx)
otherBx.setAttribute("myDataKey", "myDataValue");
}
}