HtmlHead()

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

Usage

BOOLEAN = HtmlHead( 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 head area [optional]

Calling

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

HtmlHead(
   text=?, 
   position=?
);

Supports passing parameters as a structure using ArgumentCollection:

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