jQuery(document).ready(function(){
    /*var xxyy = jQuery('#demo5').text();
    alert(xxyy);*/
    jQuery('#muster_order').click(function() { 
    jQuery.blockUI({ 
        message: jQuery('#displayBox'), 
        css: { 
            top:  (jQuery(window).height() - 400) /2 + 'px', 
            left: (jQuery(window).width() - 400) /2 + 'px', 
            width: '400px'
        } 
        }); 
    });
    jQuery('#btnCancel').click(function(){
            jQuery.unblockUI();
    });
    jQuery('#btnEindruck').click(function(){
            jQuery.unblockUI();
    });
    jQuery('#btnNoEindruck').click(function(){
            jQuery.unblockUI();
    });
});


