CmdUtils.CreateCommand({
  name: "eyeka",
  homepage: "http://www.eyeka.com/",
  icon: "http://www.eyeka.com/images/fo/local/eyeka/eyeka.ico",
  author: { name: "Vincent Hellot"},
  description: "Search for authors, title, descriptions on Eyeka website",
  help: "Type the term you're looking for",
  takes: {"your search": noun_arb_text},
  execute: function(theSearch) {
    if(theSearch.text.length < 1) {
      displayMessage("Search requires a term to be entered");
      return;
    }
    var searched = escape(theSearch.text);
    var url = "http://www.eyeka.com/search/for_author_title_description?search="+searched;
    Utils.openUrlInBrowser(url);
  }
})