function UpdateCtxMnu()
{
var box = scene.getBoxById("myHtmlBox");
var mnu = scene.getBoxById("myMenu");
if (box && mnu)
{
var shouldDisable = !box.queryCmdEnabled("undo");
// Locate and disable undo item in menu here.
}
}