CmdUtils.CreateCommand({
  name: "zargan",
  homepage: "http://www.ugurokumus.net",
  author: { name: "Ugur Okumus", email: "kiirpisifre@gmail.com"},
  license: "GPL",
  description: "Convert selected Text with zargan.com",
  icon : "http://www.zargan.com/favicon.ico",
  _setLocation:function(_url){
    CmdUtils.getDocument().location = _url;
  },
  preview: function(pblock) {
    var _selText = CmdUtils.getSelection();
    pblock.innerHTML = "Convert <b style='font-style:italic;'>"+_selText+"</b> with zargan.com" ;
  },
  execute: function() {
    var doc = Application.activeWindow.activeTab.document;
    var _selText = CmdUtils.getSelection();
    this._setLocation("http://www.zargan.com/sozluk.asp?Sozcuk="+_selText);
  }
 });



