var seznamcz = {
description: "Nal\u00E9zt osobu nebo url na seznam.cz",
  shortDescription: "seznam.cz",
  icon: "http://www.seznam.cz/favicon.ico",
  scope: {
    semantic: {
      "hCard" : "fn"
    }
  },
  doAction: function(semanticObject, semanticObjectType) {
    if (semanticObject.fn) {
      return "http://search.seznam.cz/?q=" + encodeURIComponent(semanticObject.fn)
    }
  } 
};

SemanticActions.add("setnamcz", seznamcz);
