01 FirstAssistant.prototype.handleButtonPress = function(event) { 02 var contact = { 03 firstName: this.vornameModel.value, 04 lastName: this.nachnameMod el.value, 05 } 06 this.controller.serviceRequest("palm://com.palm.applicationManager", { 07 method: "open", parameters: { 08 id: "com.palm.app.contacts", params: { 09 contact: contact, launchType: "newContact" 10 } 11 } 12 });}