HtmlBody()

Allows you to insert content into the HTML <body></body> area of the page. It must be called before any content is flushed to the request

Usage

BOOLEAN = HtmlBody( text, position )
Argument Summary
text the text to add to the HTML BODY
position indicator to where it should be added; APPEND|PREPEND controls where you wish the body text to appear within the body area [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

HtmlBody(
   text=?, 
   position=?
);

Supports passing parameters as a structure using ArgumentCollection:

HtmlBody( ArgumentCollection={
   text : ?, 
   position : ?
} );