﻿function validateFormAndShowProcessingDialog(validationGroupName) {
    if (Page_ClientValidate(validationGroupName) == true) {
        showProcessingPopupViaClient();
        return true;
    }
    else {
        return false;
    }
}

function ShowBillingAddress() {
    if ($('.subscribeCheckbox input').attr('checked')==true) {
        $('#billingAddress').hide(1000);
    }
    else {
        $('#billingAddress').show('slow');
    }
}

function validateAddressandPaymentFormAndShowProcessingDialog() {
    var validBilling, validAccount, validPayment;
    validBilling = Page_ClientValidate('billing');
    validAccount = Page_ClientValidate('account');
    validPayment = Page_ClientValidate('Payment');
    var successCount = 0;
    if ($('#billingAddress').is(':visible')) {
        if (((Page_ClientValidate('account') == true) && Page_ClientValidate('billing') == true) && (Page_ClientValidate('Payment') == true)) {
            if (confirm('Your order has been sent by secure server to Turpin Distribution for processing. Any magazines you order will be delivered within 21 days. Once you submit your order you will receive a confirmation e-mail with details of how to log on to magazines online. Continue?')==true) {
                    showProcessingPopupViaClient(true);
                    return true;
            }
            else return false;
        }
        else {
            return false;
        }
    }
    else if ($('#paymentDetails').is(':visible')) {
        if ((Page_ClientValidate('account') == true) && (Page_ClientValidate('Payment') == true)) {
            if (confirm('Your order has been sent by secure server to Turpin Distribution for processing. Any magazines you order will be delivered within 21 days. Once you submit your order you will receive a confirmation e-mail with details of how to log on to magazines online. Continue?') == true) {
                showProcessingPopupViaClient(true);
                return true;
            }
            else return false;
        }
        else {
            return false;
        }
    }
    else {
        if (Page_ClientValidate('account') == true) {
            if (confirm('Your order has been sent by secure server to Turpin Distribution for processing. Any magazines you order will be delivered within 21 days. Once you submit your order you will receive a confirmation e-mail with details of how to log on to magazines online. Continue?') == true) {
                showProcessingPopupViaClient(true);
                return true;
            }
            else return false;
        }
        else {
            return false;
        }
    }
}

function scrollToTop() {
    $('html, body').animate({ scrollTop: 0 }, 200);
}
