Friend Of the Court FOC
The Friend Of the Court, FOC, is an entity that facilitates the handling of child-related issues and other issues, such as Child Custody, Parenting Time, Child Support, and Spousal Support, formerly Alimony. The Friend Of the Court does not exist in all states. The Friend Of the Court helps the Court with the above issues.Labels: Definitions
Alimony or Spousal Support Definition
Alimony, a former term for Spousal Support, is the amount of money that a spouse gets from the husband/wife based on the difference in incomes. The term alimony is on its way of disappearing from the court terminology, as it is a term that is associated with the idea that the husband pays the wife, whereas the new term adopted by the court, namely Spousal Support, sends a fairer message in that the amount to be paid may be to either the husband, or the wife, based on the relative income.
Dr. DreamerLabels: Alimony, Definitions, Spousal Support
"Dissolution of Marriage" Definition
The legal terminology for a Divorce is "Dissolution of Marriage". The rationale behind the terminology stems from the fact that, when a couple divorces, the marriage dissolves.
Dr. DreamerLabels: Definitions
"Modification of Parenting Time" Definition
A Modification of Parenting Time implies a change in the current custody or parenting time that the children spend with either parent. Therefore, a modification of parenting time entails a change in the time ratio, or percentage of time, that the children will spend with each parent.
It is important to understand that a modification of parenting time does mean a change of custody!
Dr. DreamerLabels: Definitions
Legal Term "Motion" or"File a Motion"
Hello everybody!
Here is a word that you are going to encounter in courts and in the "legal" world: Motion. A motion is the legal procedure that one has to use in order to alter a current situation. The procedure is called "file a motion". Some examples are: a motion to change custody, a motion to change child support, etc...
Dr. DreamerLabels: Definitions
Sole Physical Custody Definition
In the case of sole physical custody, the non-custodial parent gets the child or children every other weekend, and an overnight (usually Wednesday) every other week. The custodial parent gets the child or children the remainder of the time.
Dr. DreamerLabels: Definitions
Joint Legal Custody Definition
In the case of joint legal custody, both parents are custodial parents and jointly make all the necessary decisions for the child or children.
Dr. DreamerLabels: Definitions
Sole Legal Custody Definition
In the case of sole legal custody, the custodial parent has the right to make all the necessary decisions for the child or children without consulting with the other parent. This includes, but is not limited to, decisions about schools, activities, etc...
Dr. DreamerLabels: Definitions
Joint Physical Custody Definition
In the case of joint physical custody, both parents get the child or children either an equal amount of time, or an amount of time ( according to any ratio) to which the parents agree. If the parents cannot agree, then the Judge will make the decision.
Dr. DreamerLabels: Definitions
Definitions of divorce legal terms
In the next several blogs, I will be defining some of the legal terms used, by the court, Referees, and Judges, in divorces.
Dr. DreamerLabels: Definitions
|
<%
Dim SearchType
Dim Query
Dim XML
Dim ResultLength
Dim recordNumber
Dim iCount
Dim IPAddy
Dim SearchEngine
Dim Node
DIM TITLE
DIM URL
DIM PRICE
DIM IMAGEURL
Dim ProductDescription
If amazonquery = "" Then
amazonquery = "Divorce"
ElseIf amazonquery = "Intoduction" Then
page = "Divorce"
End If
amazonquery = Replace(amazonquery, " ", "%20")
SearchEngine = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&SubscriptionId=1R15PYA4AG277WQYTTR2&Operation=ItemSearch&SearchIndex=Books&Keywords=" & amazonquery & "&ResponseGroup=Request,Small&AssociateTag=productinform-20"
Set XML = Server.CreateObject("Microsoft.XMLHTTP")
XML.Open "GET", SearchEngine, False
XML.Send
resultLength = CInt(XML.responseXML.selectNodes("ItemSearchResponse/Items/Item").length)
If resultLength > 0 Then
%>
|
Books:
|
<%
'For iCount = 0 To CInt(resultLength)-1
For iCount = 0 To 6
on error resume next
Set Node = XML.responseXML.selectSingleNode("ItemSearchResponse/Items/Item[" & CInt(iCount)& "]")
'ITEMID = Node.selectSingleNode("ASIN/ItemId").Text
TITLE = Node.selectSingleNode("ItemAttributes/Title").Text
URL = Node.selectSingleNode("DetailPageURL").Text
PRICE = Node.selectSingleNode("ItemAttributes/ListPrice/FormattedPrice").Text
IMAGEURL = Node.selectSingleNode("SmallImage/URL").Text
DESC = Node.selectSingleNode("EditorialReviews/EditorialReview/Content").Text
%>
|
<%
Response.Write(" | | " & TITLE & " | | ")
'Response.Write(" " & page_name & " ")
'Response.Write(" " & PRICE & " ")
'Response.Write Left(DESC,100)
'Response.Write ("....Read More")
%>
<% Next
Set Node = Nothing
Set XML = Nothing
%>
<%
End If
%>
|