var maowfirenze09 = {
  onLoad: function() {
    // initialization code
    this.initialized = true;
    this.strings = document.getElementById("maowfirenze09-strings");
  },
  onMenuItemCommand: function(e) {
    var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
                                  .getService(Components.interfaces.nsIPromptService);
    promptService.alert(window, this.strings.getString("helloMessageTitle"),
                                this.strings.getString("helloMessage"));
  },

};
window.addEventListener("load", function(e) { maowfirenze09.onLoad(e); }, false);

