function OnStart()  {      var appjs='';     // note the backslashes escaping the single quotes below     var myjs = '' +                 ' function myboo(id){ app.Execute("b_test(\'" + id + "\')")}' ;     lay = app.CreateLayout("linear", "VCenter,FillXY");          web = app.CreateWebView(0.8, 0.8);           lay.AddChild(web);      app.AddLayout(lay);      var b1 = "say boo";     var b2 = "say bah";      web.LoadHtml(appjs + myjs + b1 + b2);      }  function b_test(x) { app.ShowPopup(x); };