public ActionResult ReturnToProductSelection(Account acct)
        {
            string dest = string.Format(WebConfigurationManager.AppSettings["FBProductSelection"], acct.AccountNumber);

            RedirectWithSAML(dest);

            return new EmptyResult();
        }
        public ActionResult AddPaymentInformation(Account acct)
        {
            payProcSvc.SavePayment(acct.AccountNumber, acct.CartId, acct.TotalAmountToPay, "");

            return ReturnToProductSelection(acct);
        }