/*$(function() {
    $('#gallery a').lightBox();
});
*/


window.paymentId = null;
jQuery('#payment_choose').submit(function(){
    if (window.paymentId) {
        var checkPaymentReceipt = function(id) {
            if (jQuery(':radio:checked','#payment_choose').attr('class') == 'receipt') {
                var url = window.location.href;
                var win = window.open("", "_blank", "width=710,height=620,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no");
                win.document.write("<html><head><" + "script" + ">location.href = '" + url + "do/?payment-id=" + id + "'</" + "script" + "></head><body></body></html>");
                location.href = '/emarket/ordersList/?' + Math.random();
                win.focus();
                return false;
            }
        }
        return checkPaymentReceipt(window.paymentId);
    }
    else return true;
});
