CmdUtils.CreateCommand({
  name: "tweetscan",
  homepage: "http://tweetscan.com/",
  author: { name: "David Sterry", email: "tweetscan@davidsterry.com"},
  description: "Search Twitter in real-time with this shortcut.",
  help: "You can use quotes, - to remote results, and OR(in caps) to search for any of your keywords. You can also subscribe to an email or RSS feed of your results at the site.",
  takes: {"your Twitter search phrase": noun_arb_text},
  execute: function( theShout ) {
    var msg = "http://tweetscan.com/index.php?s=" + escape(theShout.text);
    var tspage = CmdUtils.getDocumentInsecure();
    tspage.location = msg;
  }
})
