function leaveGroupPrompt( groupId, groupName )
{
	if ( window.confirm( "You are about to leave the group: \n"+groupName+"\nAre you sure?" ) )
	{
		leaveURL = processURL + '?action=leaveGroup&groupId=' + groupId;
		location.href = leaveURL;
	}
}
