<?xml version="1.0" encoding="UTF-8"?>
<application-components>
<application-component id="Reflector" participant-id = "Reflect" package-name = "">
<![CDATA[
_handle_keyup : function()
{
   this.serveTransaction("keypress",this);
},

component_destroy : function()
{
   Hemi.event.removeEventListener(this.getContainer(),"keyup",this._prehandle_keyup);
},

component_init : function()
{
   this.getContainer().parentNode.appendChild(document.createTextNode("Participant id - " + this.getProperties().TransactionId));
   this.scopeHandler("keyup",0,0,1);
   Hemi.event.addEventListener(this.getContainer(),"keyup",this._prehandle_keyup);
}
]]>
</application-component>
</application-components>
