
    function applyProfile()
    {
		document.profile.operation.value = 'update_profile';
		document.profile.submit();
    }
    
    function deleteAvatar()
    {
		document.profile.operation.value = 'delete_avatar';
		document.profile.submit();
    }

    function changeCommentReportFlag()
    {
        if (document.profile.is_comment_report.value == 1)
        {
		  document.profile.is_comment_report.value = 0;
        }
		else
		{
		  document.profile.is_comment_report.value = 1;
        }
    }

