window.onload = function()
{
  checkForSubNavigation();
  var notify=document.getElementById('notify');
  if (notify){notify.onclick = sendNotifications;}
}

function sendNotifications()
{
  var conf=confirm('Click OK to notify members.');
  if (conf){
    var sendnotification=document.getElementById('sendnotification');
    var editForm=document.getElementById('editForm');
    if (sendnotification && editForm){
      sendnotification.value='true';
      editForm.submit();
    }
  }
}