function allChecked() {
  			var uindscbs = $("input[name='uidscb']");
 
  			 uindscbs.each(function(){
                              $(this).prop("checked", true);

                            })
  		}
 		
  		function allCancelChecked() {
  			var uindscbs = $("input[name='uidscb']");
  			  uindscbs.each(function(){
                              $(this).removeAttr("checked");

                            })
  		}