CmdUtils.CreateCommand({
  name: "pawst",
  takes: {"something": noun_arb_text},
  preview: function( pblock, theShout ) {
    pblock.innerHTML = "Search '" +  theShout.text + "' in social bookmarking websites using pawst.com";

  },
  homepage: "http://pawst.com/",
  icon: "http://pawst.com/favicon.png",
  author: { name: "Shmuel Ahdut", email: "shmuel@ahdut.com"},
  license: "MPL",
  description: "Search social bookmarking websites using pawst.com",
  help: "Simply type 'pawst topic' i.e 'pawst funny pics'",
  execute: function( theTopic ) {
    var url = "http://pawst.com/"+theTopic.text;
    Utils.openUrlInBrowser(url);
  } 

})