function LoadDocContent(filePath)
{
var bx = scene.getBoxById("htmlBox");
if (bx)
{
var fileStrm = shell.serviceManager.basics.fileStream;
fileStrm.openForRead(filePath);
bx.loadStream(fileStrm);
bx.close();
}
}