function ExchangeContent(newTextContent)
{
var box = scene.getBoxById("myHtmlBox");
if (box)
{
if (box.hasContent())
{
SaveOffOldContent(box.text);
}
box.text = newTextContent;
}
}