$(function() {
    $(".report").dialog({
        width: 'auto',
        minWidth: 250,
        maxWidth: 500,
        modal: false,
        buttons: {
            Ok: function() {
                $( this ).dialog( "close" );
            }
        }
    });

    // voucher
    $( "#dialog-voucher" ).dialog({
        autoOpen: false,
        resizable: false,
        modal: true,
        buttons: {
                "OK": function() {
                    $(this).dialog("close");
                }
            }
    });

    $("#input_voucher").click(function() {
        if ($(this).attr('checked')) {
            $( "#dialog-voucher" ).dialog('open');
        }
    });

});
