function csOnShopCancel(aEvent)
  {
  aEvent.preventDefault();
  aEvent.stopPropagation();

  window.location = '.';
  }

Ext.onReady(function()
  {
  var cancel = Ext.select('#bCancel');
  cancel.on('click', csOnShopCancel, this);
  });

