 $(document).ready(function() { 
     
	 // Remove default form submit message. This only displayed for non-JS	     
     $('#__aspnetForm').removeAttr('onSubmit');
     $('#__aspnetForm').removeAttr('onsubmit');

     $('#__aspnetForm').submit(function() { 
            $.blockUI({ 
            message: $('#question'), 
            css: { width: '275px',border:'3px solid #00a246',color:'#00a246',padding:'1em'} }); 
            return false; 
        }); 
        
     $('#yes').click(function() { 
            // update the block message 
            $.blockUI({ 
            message: "<h1><img src='images/ajax-mini-loader.gif' />&nbsp;Please wait...</h1>",
            css: { width: '275px',border:'3px solid #00a246',color:'#00a246',padding:'1em'}
             });
             $("input[id*='SendDonation']").click();
       }); 
       
        
        $('#no').click(function() { 
            $.unblockUI(); 
            return false; 
        }); 

    }); 
   
    
