CmdUtils.CreateCommand({
  name: "revott",
  takes: {"torrent name": noun_arb_text},
  homepage: "http://www.lusky3.110mb.com",
  author: {name: "Zero"},
  description: "Searches RevolutionTT for a torrent of your choice.",
  preview: function( pblock, revott ) {
    var preview = "Searches for a torrent of <i>("+revott.text+")</i> on RevolutionTT.";
    var data = {revott: revott.text};
    
    pblock.innerHTML = CmdUtils.renderTemplate( preview, data );
  },

  execute: function (revott)
  {
  Utils.openUrlInBrowser("http://www.revolutiontt.net/browse.php?search="+revott.text+"&cat=0&titleonly=1");
  }
});


