$(function () {

    $('form#formMovie').submit(function() {
	    $(this).ajaxSubmit({
	        url: $frontendVars.baseUrl + '/book/process/format/json',
	        dataType: 'json',
	        beforeSubmit: function() {
	            $('.tablecenter').block({ message: '處理中...' });
	        },
	        success: function(json) {
	            if (json.error) {
	                $('.tablecenter').unblock();
	                alert(json.messages[0]);
	            } else {
	                location.href = $frontendVars.baseUrl + '/book/confirmation/code/' + json.code;
	            }
	        },
	        error: function(e) {
	            //$.unblockUI();
	            //alert(e.responseText);
	        }
	    });
        return false;
    });

});