function noBubble(e){
	if (!e) var e = window.event;
	e.cancelBubble = true;
	if (e.stopPropagation) e.stopPropagation();
}

function deleteConfirm(){
	return confirm('Are you sure you wish to delete this item?\n\nThis cannot be undone.');
}
