/* -- */
/* --------------------------- My Friends Functions ------------------------------------- */
/* -- */

/* Friend Deletion */
function checkDelFriend(iUserID) {
	if(confirm("Are You Sure You Wish To Remove This Friend ?")) {
		var url = getBaseURL("friends") + "del/" + iUserID + "/";
		window.document.location = url;
	}
	return;
}

/* Friend Sorting */
function sortFriendsPage(eElem) {
	var value = getDropdownValue(eElem);
	var url = getBaseURL("friends") + "main/" + value + "/";
	window.location = url;
}