function saveDialogShop()
{

  var shopCategoryID = $('#module-shop-shopCategoryID').val();
  var showChildren = $('#module-shop-showChildren').is(':checked');
  showChildren = showChildren === true ? 1 : 0;
  var newElement = AjaxAPI('CoreDialog', 'saveModule', {siteContentID:moduleEditID, data:{'ShopCategoryID': shopCategoryID, 'ShowChildren':showChildren}});
  
  // console.log(newElement);
  return newElement;
}
