CmdUtils.CreateCommand({
  name: "deviantart",
  icon: "http://i.deviantart.com/icons/favicon.png",
  homepage: "http://www.frozenagain.com/ubiquity/",
  author: { name: "Eli", email: "elifpm@charter.net"},
  license: "GPL",
  description: "Searches deviantART for your term",
  help: "deviantart <i>term</i>",
  takes: {"input": noun_arb_text},
  preview: function( pblock, theShout) {
    pblock.innerHTML = "Search deviantART for <b>" +  theShout.text + "</b>"
  },
  execute: function(theShout) {
    var searchUrl = "http://www.deviantart.com/?q=" + theShout.text;
    Utils.openUrlInBrowser(searchUrl);
  }
});
