/**
 *
 * action_link
 *
 *
 */

    $(document).ready
    (
        function()
        {
            $('.action_link').click(function(event) {
                location.href = $(this).attr('href');
            }).confirm({
              msg:'',
              dialogShow:'fadeIn',
              timeout:3000,
              buttons: {
                ok:'確定',
                cancel:'取消', 
                separator:'  '
              }
            });
        }
    );