﻿function blockUI0(){
    //$.blockUI({ message: '<h1><img src="busy.gif" /> Just a moment...</h1>' });
    var msg = "<img src='/static/loading_icon.gif' /><h1>Loading</h1>";
    
  var style = { 
        border: 'none', 
        padding: '15px', 
        backgroundColor: 'white', 
        '-webkit-border-radius': '10px', 
        '-moz-border-radius': '10px', 
        opacity: '.5', 
        color: 'black' 
    };
    $.blockUI({message: msg,css: style});
}