function ClearOnClick(which, text)
{
  if (text.length == 0)
    which.value = '';
  else if (which.value == text)
    which.value = '';
}

function ForgotPassword()
{
  document.location.href = '/user/password';
}

function DeleteActivityFeedItem(aid)
{
  if (confirm('Are you sure you want to delete this activity feed item?  This action cannot be undone.'))
  {
    $.post('/ajax/admin/fm_addon_activity/remove', 'action=remove&aid=' + aid, DeleteActivityFeedItemCallback, 'json');
  }
}

function DeleteActivityFeedItemCallback(data)
{
  $('#activity-feed-item-' + data.aid).fadeOut('slow');
}

function expand()
{
  pageTracker._trackEvent('Ad Expand', 'Expand', 'Expand Alpine');

  e = document.getElementById("google_ads_div_970x66").parentNode;
  e.style.height = '428px';
}

function collapse()
{
  $("#google_ads_div_970x66").parent().animate({ height : '66px'});
}

