$(document).ready(function(){
  $('#duplicate-confirmation').live('click', function(e){
    e.preventDefault();
    $.blockUI();
    $.post(
      '/users/ajaxActivationRem/' + $(this).attr('href').replace(/#/,''), 
      {}, 
      function(data){
        $.unblockUI();
        if (data.success) {
          $('<div>A duplicate activation email has been sent to your account. Should you have any problems please feel free to contact Linex directly.</div>').dialog({
            title: 'Duplicate activation email sent',
            width: 300,
            modal: true,
            buttons: {
              'Ok': function(){
                $(this).dialog('close');
              }
            }
          });
        } else {
          alert('An error occured and the email was not sent. Should this problem persist please contact Linex directly');
        }
        
      }, 
      'json');
  });
});


