// http://www.digioso.org
CmdUtils.makeSearchCommand(
{
    name: "gc",
    url: "http://gamescom.de/suche/wPages/index.php?action=showResult&searchTerm={QUERY}",
    description: "Searches the GamesCom Cologne website (http://gamescom.de) for articles.",
    author: {name: "Digioso", email: "webmaster@digioso.org"},
    help: "gc [what you are looking for]",
    license: "GPL",
    homepage: "http://www.digioso.org",
    preview: function(pBlock, {object})
    {
        if (object.text)
            pBlock.innerHTML = _("Searches the GamesCom Website for ${query}",{query:object.text});
        else
            pBlock.innerHTML = _("Searches GamesCom Website for the given words.");
    }
});