
//---------------------------------------------------------------------------------------------------

   function beforeSend_viewCauseAll()
   {
      $('#passIcon').mouseover(function(){
                                            $(this).css('cursor','pointer')
                                         })
      $('#passIcon').click(function(){
                                        $('input[name="checkPass[]"]').each(function(){
                                                                                         if($(this).is(':checked'))
                                                                                            this.checked=false
                                                                                         else
                                                                                            this.checked=true
                                                                                      })
                                    })
   }

//---------------------------------------------------------------------------------------------------


