function removeNotificationPost(link, notifyId) {
	var deleteNotificationLink = link;
	var notificationId = notifyId;
	var notificationListId = "notification_" + notificationId; 
	var notificationList = document.getElementById(notificationListId);
	
	sendDeleteNotification = function () {
		postJsonResponse(deleteNotificationLink, 5000, "", loadDeleteNotificationSuccess)
	};
	loadDeleteNotificationSuccess = function (response) {
		if (response['success']) {
			var notificationAnimation = new YAHOO.util.Anim(notificationList, {
										opacity: { to : 0}
										}, 0.35, YAHOO.util.Easing.easeOut);
			notificationAnimation.onComplete.subscribe(removeNotificationElement);
			notificationAnimation.animate();
		}
	};
	removeNotificationElement = function () {
		notificationList.parentNode.removeChild(notificationList);
	};
	sendDeleteNotification();
}