All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cfeclipse.cfml.dictionary.cfml7.xml Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
<?xml version="1.0"?>
<dictionary >
	<tags>
        <tag endtagrequired="false" canHaveAttributeCollection="false" name="cfabort" single="true"
             xmlstyle="false">
            <help><![CDATA[
        Stops the processing of a CFML page at the tag location.
        CFML returns everything that was processed before the
        tag. The tag is often used with conditional logic to stop
        processing a page when a condition occurs.
    ]]></help>
            <parameter name="showerror" required="false" type="String">
                <help><![CDATA[
            Error to display, in a standard CFML error page,
            when tag executes
        ]]></help>
                <values/>
            </parameter>
            <parameter name="attributecollection" required="false" type="String">
                <help><![CDATA[
                    You can specify this tag's attributes in an attributeCollection whose value is a 
                    structure. Specify the structure name in the attributeCollection and use the tag’s 
                    attribute names as structure keys.
                    ]]></help>
                <values/>
            </parameter>
            <possiblecombinations/>
        </tag>

<tag  name="cfapplet" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		This tag references a registered custom Java applet. To
		register a Java applet, in the CFML Administrator, click
		Extensions \ Java Applets.

		Using this tag within a cfform tag is optional. If you use it
		within cfform, and the method attribute is defined in the
		Administrator, the return value is incorporated into the
		form.
	]]></help>
	<parameter name="appletsource" type="String" required="true">
		<help><![CDATA[
			Name of registered applet
		]]></help>
		<values/>
	</parameter>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Form variable name for applet
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Control's height, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Control's width, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="vspace" type="Numeric" required="false">
		<help><![CDATA[
			Vertical margin above and below control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hspace" type="Numeric" required="false">
		<help><![CDATA[
			Horizontal spacing to left and right of control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="align" type="String" required="false">
		<help><![CDATA[
			Alignment
		]]></help>
		<values>
			<value option="top"/>
			<value option="left"/>
			<value option="bottom"/>
			<value option="baseline"/>
			<value option="texttop"/>
			<value option="absbottom"/>
			<value option="middle"/>
			<value option="absmiddle"/>
			<value option="right"/>
		</values>
	</parameter>
	<parameter name="notsupported" type="String" required="false">
		<help><![CDATA[
			Text to display if a page that contains a Java applet-based
			cfform control is opened by a browser that does not
			support Java or has Java support disabled.
			Default:
			"<b>Browser must support Java to <br>view ColdFusion Java
			Applets!</b>"
		]]></help>
		<values default="&lt;b&gt;Browser must support Java to &lt;br&gt;view ColdFusion Java Applets!&lt;/b&gt;"/>
	</parameter>
	 <possiblecombinations>
                <combination attributename="appletsource">
                    <required>appletsource,name</required>
                    <optional>align,height,hspace,notsupported,vspace,width</optional>
                </combination>
                <combination attributename="name">
                    <required>appletsource,name</required>
                    <optional>align,height,hspace,notsupported,vspace,width</optional>
                </combination>
            </possiblecombinations>

</tag>
<tag  name="cfapplication" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Defines the scope of a CFML application; enables and
		disables storage of Client variables; specifies the Client
		variable storage mechanism; enables Session variables; and
		sets Application variable timeouts.
	]]></help>
	<return type="application" name="application"/>
	<return type="session" name="session"/>
	<return type="client" name="client"/>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Name of application. Up to 64 characters
		]]></help>
		<values/>
	</parameter>
	<parameter name="loginstorage" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="cookie">
			<value option="cookie"/>
			<value option="session"/>
		</values>
	</parameter>
	<parameter name="clientmanagement" type="boolean" required="false">
		<help><![CDATA[
			enables client variables
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="clientstorage" type="String" required="false">
		<help><![CDATA[
			How client variables are stored
			* datasource_name: in ODBC or native data source.
				You must create storage repository in the
				Administrator.
			* registry: in the system registry.
			* cookie: on client computer in a cookie. Scalable.
				If client disables cookies in the browser, client
				variables do not work
		]]></help>
		<values default="registry">
			<value option="cookie"/>
			<value option="registry"/>
			<value option="datasource_name"/>
		</values>
	</parameter>
	<parameter name="setclientcookies" type="boolean" required="false">
		<help><![CDATA[
			No: CFML does not automatically send CFID and CFTOKEN
			cookies to client browser; you must manually code CFID and
			CFTOKEN on the URL for every page that uses Session or
			Client variables
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="sessionmanagement" type="boolean" required="false">
		<help><![CDATA[
			enables session variables
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="sessiontimeout" type="Timespan" required="false">
		<help><![CDATA[
			Lifespan of session variables. CreateTimeSpan function and
			values in days, hours, minutes, and seconds, separated by
			commas
		]]></help>
		<values/>
	</parameter>
	<parameter name="applicationtimeout" type="Timespan" required="false">
		<help><![CDATA[
			Lifespan of application variables. CreateTimeSpan function
			and values in days, hours, minutes, and seconds, separated
			by commas.
		]]></help>
		<values/>
	</parameter>
	<parameter name="setdomaincookies" type="boolean" required="false">
		<help><![CDATA[
			Yes: Sets CFID and CFTOKEN cookies for a domain (not a host)
			Required, for applications running on clusters.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="scriptprotect" type="String" required="false">
		<help><![CDATA[
			Specifies whether to protect variables from cross-site scripting attacks.
			 - none: do not protect variables
			 - all: protect Form, URL, CGI, and Cookie variables
			 - comma-delimited list of ColdFusion scopes: protect variables in the specified scopes
		]]></help>
		<values>
			<value option="none"/>
			<value option="all"/>
			<value option="form"/>
			<value option="url"/>
			<value option="cookie"/>
			<value option="cgi"/>
			<value option="form,url"/>
			<value option="form,url,cookie"/>
			<value option="form,url,cookie,cgi"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<tag  name="cfargument" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false" allowanyattribute="true">
	<help><![CDATA[
		Creates a parameter definition within a component definition.
		Defines a function argument. Used within a cffunction tag.
	]]></help>
	<return type="Any" parameter="name"/>
	<parameter name="name" type="String" returnVarType="variablename" required="true">
		<help><![CDATA[
			An argument name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			a type name; data type of the argument.
		]]></help>
		<values>
			<value option="any"/>
			<value option="array"/>
			<value option="binary"/>
			<value option="boolean"/>
			<value option="date"/>
			<value option="guid"/>
			<value option="numeric"/>
			<value option="query"/>
			<value option="string"/>
			<value option="struct"/>
			<value option="uuid"/>
			<value option="xml"/>
			<value option="variablename"/>
			
		</values>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
			Whether the parameter is required to execute the component
			method.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="default" type="String" required="false">
		<help><![CDATA[
			If no argument is passed, specifies a default argument
			value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="displayname" type="String" required="false">
		<help><![CDATA[
			Meaningful only for CFC method parameters. A value to be
			displayed when using introspection to show information
			about the CFC.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hint" type="String" required="false">
		<help><![CDATA[
			Meaningful only for CFC method parameters. Text to be
			displayed when using introspection to show information
			about the CFC. The hint attribute value follows the
			displayname attribute value in the parameter description
			line. This attribute can be useful for describing the
			purpose of the parameter
		]]></help>
		<values/>
	</parameter>
</tag>
<tag  name="cfassociate" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Allows subtag data to be saved with a base tag. Applies only
		to custom tags.
	]]></help>
	<parameter name="basetag" type="String" required="true">
		<help><![CDATA[
			Base tag name
		]]></help>
		<values/>
	</parameter>
	<parameter name="datacollection" returnVarType="Struct" type="String" required="false">
		<help><![CDATA[
			Structure in which base tag stores subtag data
		]]></help>
		<values/>
	</parameter>
	 <possiblecombinations/>
</tag>
<tag  name="cfbreak" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Used within a cfloop tag. Breaks out of a loop.
	]]></help>
</tag>
<tag  name="cfcache" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Stores a copy of a page on the server and/or client computer,
		to improve page rendering performance. To do this, the tag
		creates temporary files that contain the static HTML returned
		from a CFML page.

		Use this tag if it is not necessary to get dynamic content each
		time a user accesses a page.
		You can use this tag for simple URLs and for URLs that contain
		URL parameters.
	]]></help>
	<parameter name="action" type="String" required="false">
		<help><![CDATA[
			* cache: server-side and client-side caching.
			* flush: refresh cached page(s).
			* clientcache: browser-side caching only. To cache a personalized page, use this option.
			* servercache: server-side caching only. Not recommended.
			* optimal: same as "cache".
		]]></help>
		<values>
			<value option="cache"/>
			<value option="flush"/>
			<value option="clientcache"/>
			<value option="servercache"/>
			<value option="optimal"/>
		</values>
	</parameter>
	<parameter name="directory" type="String" required="false">
		<help><![CDATA[
			Absolute path of cache directory.
		]]></help>
		<values/>
	</parameter>
	<parameter name="Timespan" type="Timespan" required="false">
		<help><![CDATA[
			Absolute path of cache directory.
		]]></help>
		<values/>
	</parameter>
	<parameter name="expireurl" type="String" required="false">
		<help><![CDATA[
			Used with action = "flush". A URL reference. CFML
			matches it against the mappings in the specified cache
			directory. Can include wildcards. For example:
			"*/view.cfm?id=*".
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			A username
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			A password
		]]></help>
		<values/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			Remote port to which to connect
		]]></help>
		<values/>
	</parameter>
	<parameter name="protocol" type="String" required="false">
		<help><![CDATA[
			Protocol that is used to create URL from cache.
		]]></help>
		<values>
			<value option="http://"/>
			<value option="https://"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfcalendar
		name = "name of calendar"
		height = "height"
		width = "width"
		selectedDate = "date"
		mask = "returned date format"
		startRange = "first disabled date"
		endRange = "last disabled date"
		disabled = "true, false, or no attribute value"
		mask = "character pattern"
		dayNames = "days-of-the-week labels"
		monthNames = "month labels"
		onChange = "actionscript to invoke"
--><tag  name="cfcalendar" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Puts an interactive Macromedia Flash format calendar in an HTML
		or Flash form. Not supported in XML format forms. The calendar
		lets a user select a date for submission as a form variable.
	]]></help>
	<parameter name="name" type="String" returnVarType="variablename" required="true">
		<help><![CDATA[
			The name of the calendar.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			The vertical dimension of the calendar specified in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			The horizontal dimension of the calendar specified in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="selecteddate" type="String" required="false">
		<help><![CDATA[
			The date that is initially selected. It is highlighted in a
			color determined by the form skin. Must be in mm/dd/yyyy
			or dd/mm/yyyy format, depending on the current locale.
			(Use the setlocale tag to set the locale, if necessary.)
		]]></help>
		<values/>
	</parameter>
	<parameter name="startrange" type="String" required="false">
		<help><![CDATA[
			The start of a range of dates that are disabled. Users
			cannot select dates from this date through the date
			specified by the endRange attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="endrange" type="String" required="false">
		<help><![CDATA[
			The end of a range of dates that are disabled. Users
			cannot select dates from the date specified by the
			startRange attribute through this date.
		]]></help>
		<values/>
	</parameter>
	<parameter name="disabled" type="boolean" required="false">
		<help><![CDATA[
			Disables all user input, making the control read only.
			To disable input, specify disabled without an attribute
			or disabled="true". To enable input, omit the attribute
			or specify disabled="false".
			Default is: false
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
			A pattern that specifies the format of the submitted date.
			Mask characters are:
			 - D = day, can use 0-2 mask characters
			 - M = month, can use 0-4 mask characters
			 - Y = year, can use 0, 2, or 4 characters
			 - E = day in week, can use 0-4 characters
			 - Any other character = put the character in the specified location
			Default is: MM/DD/YYYY
		]]></help>
		<values default="MM/DD/YYYY">
			<value option="MM/DD/YYYY"/>
			<value option="DD/MM/YYYY"/>
			<value option="MM/YYYY"/>
			<value option="MM/YY"/>
			<value option="YYYY-MM-DD"/>
			<value option="EEE DD. MMM YYYY"/>
		</values>
	</parameter>
	<parameter name="firstdayofweek" type="Numeric" required="false">
		<help><![CDATA[
			Integer in the range 0-6 specifying the first day of the
			week in the calendar, 0 indicates Sunday, 6 indicates Saturday.
			Default is: 0
		]]></help>
		<values default="0">
			<value option="0"/>
			<value option="1"/>
			<value option="2"/>
			<value option="3"/>
			<value option="4"/>
			<value option="5"/>
			<value option="6"/>
		</values>
	</parameter>
	<parameter name="daynames" type="String" required="false">
		<help><![CDATA[
			A comma-delimited list that sets the names of the
			weekdays displayed in the calendar. Sunday is the
			first day and the rest of the weekday names follow in
			the normal order.
			Default is: S,M,T,W,Th,F,S
		]]></help>
		<values default="S,M,T,W,Th,F,S">
			<value option="S,M,T,W,Th,F,S"/>
			<value option="Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday"/>
			<value option="Sun,Mon,Tue,Wed,Thu,Fri,Sat"/>
		</values>
	</parameter>
	<parameter name="monthnames" type="String" required="false">
		<help><![CDATA[
			A comma-delimited list of the month names that are
			displayed at the top of the calendar.
		]]></help>
		<values default="January,February,March,April,May,June,July,August,September,October,November,December">
			<value option="January,February,March,April,May,June,July,August,September,October,November,December"/>
			<value option="Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec"/>
		</values>
	</parameter>
	<parameter name="enabled" required="false" type="boolean">
		<help><![CDATA[
			Flash only: Specifying whether the control is enabled. A
			disabled control appears in light gray. This is the inverse
			of the disabled attribute.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="visible" required="false" type="boolean">
		<help><![CDATA[
			Flash only: Specifying whether to show the control. Space
			that would be occupied by an invisible control is blank.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="tooltip" required="false" type="String">
		<help><![CDATA[
			Flash only: Text to display when the mouse pointer hovers
			over the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			Flash only: Actionscript style or styles to apply to the calendar.
			Default is: haloGreen
		]]></help>
		<values>
			<value option="haloBlue"/>
			<value option="haloGreen"/>
			<value option="haloOrange"/>
			<value option="haloSilver"/>
		</values>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			Flash only: ActionScript that runs when the user selects a
			date.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfcase
		value = "value or delimited set of values"
		delimiters = "delimiter characters"
--><tag  name="cfcase" canHaveAttributeCollection="false" endtagrequired="true" single="false" xmlstyle="false">
	<help><![CDATA[
		Used only inside the cfswitch tag body. Contains code to
		execute when the expression specified in the cfswitch tag has
		one or more specific values.
	]]></help>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			The value or values that the expression attribute of the
			cfswitch tag must match. To specify multiple matching
			values, separate the values with the delimiter character.
			The value or values must be simple constants or constant
			expressions, not variables.
		]]></help>
		<values/>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
			Specifies the delimiter character or characters that
			separate multiple values to match. If you specify multiple
			delimiter characters, you can use any of them to separate
			the values to be matched.
		]]></help>
		<values default=",">
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="value">
                    <required>value</required>
                    <optional>delimiters</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfcatch
		type = "exceptiontype"
		[Exception processing code here]
	/cfcatch

--><tag  name="cfcatch" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Used inside a cftry tag. Together, they catch and process
		exceptions in CFML pages. Exceptions are events that
		disrupt the normal flow of instructions in a CFML page,
		such as failed database operations, missing include files, and
		developer-specified events.
	]]></help>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="application"/>
			<value option="database"/>
			<value option="template"/>
			<value option="security"/>
			<value option="object"/>
			<value option="missinginclude"/>
			<value option="expression"/>
			<value option="lock"/>
			<value option="custom_type"/>
			<value option="searchengine"/>
			<value option="any"/>
		</values>
	</parameter>
</tag>
<!--
	cfchart
		format = "flash, jpg, png"
		chartHeight = "integer number of pixels"
		chartWidth = "integer number of pixels"
		scaleFrom = "integer minimum value"
		scaleTo = "integer maximum value"
		showXGridlines = "boolean"
		showYGridlines = "boolean"
		gridlines = "integer number of lines"
		seriesPlacement = "default, cluster, stacked, percent"
		foregroundColor = "Hex value or Web color"
		backgroundColor = "Hex value or Web color"
		dataBackgroundColor = "Hex value or Web color"
		showBorder = "boolean"
		font = "font name"
		fontSize = "integer font size"
		fontBold = "boolean"
		fontItalic = "boolean"
		labelFormat = "number, currency, percent, date"
		xAxisTitle = "title text"
		yAxisTitle = "title text"
		xAxisType = "scale or category"
		yAxisType = "scale or category"
		sortXAxis = "boolean"
		show3D = "boolean"
		xOffset = "number between -1 and 1"
		yOffset = "number between -1 and 1"
		rotated = "boolean"
		showLegend = "boolean"
		tipStyle = "MouseDown, MouseOver, none"
		tipBGColor = "hex value or web color"
		showMarkers = "boolean"
		markerSize = "integer number of pixels"
		pieSliceStyle = "solid, sliced"
		url = "onClick destination page"
		name = "String"
		title = "title of chart"
		style = "Style of chart"
	/cfchart

--><tag  name="cfchart" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Generates and displays a chart.
	]]></help>
	<parameter name="format" type="String" required="false">
		<help><![CDATA[
			File format in which to save graph.
		]]></help>
		<values default="false">
			<value option="flash"/>
			<value option="jpg"/>
			<value option="png"/>
		</values>
	</parameter>
	<parameter name="chartheight" type="Numeric" required="false">
		<help><![CDATA[
			Chart height; integer number of pixels
		]]></help>
		<values default="240"/>
	</parameter>
	<parameter name="chartwidth" type="Numeric" required="false">
		<help><![CDATA[
			Chart width; integer number of pixels
		]]></help>
		<values default="320"/>
	</parameter>
	<parameter name="scalefrom" type="Numeric" required="false">
		<help><![CDATA[
			Y-axis minimum value; integer
		]]></help>
		<values/>
	</parameter>
	<parameter name="scaleto" type="Numeric" required="false">
		<help><![CDATA[
			Y-axis max value; integer
		]]></help>
		<values/>
	</parameter>
	<parameter name="showxgridlines" type="boolean" required="false">
		<help><![CDATA[
			yes: display X-axis gridlines
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="showygridlines" type="boolean" required="false">
		<help><![CDATA[
			yes: display Y-axis gridlines
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="gridlines" type="Numeric" required="false">
		<help><![CDATA[
			Number of grid lines to display on value axis, including
			axis; positive integer.
		]]></help>
		<values default="10"/>
	</parameter>
	<parameter name="seriesplacement" type="String" required="false">
		<help><![CDATA[
			Applies to charts that have more than one data series.
			Relative positions of series.
		]]></help>
		<values default="default">
			<value option="default"/>
			<value option="cluster"/>
			<value option="stacked"/>
			<value option="percent"/>
		</values>
	</parameter>
	<parameter name="foregroundcolor" type="String" required="false">
		<help><![CDATA[
			color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values default="black">
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="backgroundcolor" type="String" required="false">
		<help><![CDATA[
			Color of the area between the data background and the chart
			border, around labels and around the legend. Hexadecimal
			value or supported named color. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="databackgroundcolor" type="String" required="false">
		<help><![CDATA[
			color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values default="white">
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="showborder" type="boolean" required="false">
		<help><![CDATA[
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="font" type="String" required="false">
		<help><![CDATA[
			Font of data in column.
		]]></help>
		<values default="arial">
			<value option="arial"/>
			<value option="times"/>
			<value option="courier"/>
			<value option="arialunicodeMS"/>
		</values>
	</parameter>
	<parameter name="fontsize" type="Numeric" required="false">
		<help><![CDATA[
			Size of text in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="fontitalic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in italics
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="fontbold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in bold
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="labelformat" type="String" required="false">
		<help><![CDATA[
			Format for Y-axis labels.
		]]></help>
		<values default="number">
			<value option="number"/>
			<value option="currency"/>
			<value option="percent"/>
			<value option="date"/>
		</values>
	</parameter>
	<parameter name="xaxistitle" type="String" required="false">
		<help><![CDATA[
			text; X-axis title
		]]></help>
		<values/>
	</parameter>
	<parameter name="yaxistitle" type="String" required="false">
		<help><![CDATA[
			text; X-axis title
		]]></help>
		<values/>
	</parameter>
	<parameter name="xaxistype" type="String" required="false">
		<help><![CDATA[
			* category The axis indicates the data category. Data is
			sorted according to the sortXAxis attribute.
			* scale The axis is numeric. All cfchartdata item attribute
			values must numeric. The X axis is automatically sorted
			numerically.
		]]></help>
		<values default="category">
			<value option="category"/>
			<value option="scale"/>
		</values>
	</parameter>
	<parameter name="yaxistype" type="String" required="false">
		<help><![CDATA[
			Currently has no effect, as Y axis is always used for data
			values. Valid values are category and scale
		]]></help>
		<values default="category">
			<value option="category"/>
			<value option="scale"/>
		</values>
	</parameter>
	<parameter name="sortxaxis" type="boolean" required="false">
		<help><![CDATA[
			Display column labels in alphabetic order along X-axis.
			Ignored if the xAxisType attribute is scale.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="show3d" type="boolean" required="false">
		<help><![CDATA[
			Display chart with three-dimensional appearance.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="xoffset" type="Numeric" required="false">
		<help><![CDATA[
			Applies if show3D="yes". Number of units by which to
			display the chart as angled, horizontally
		]]></help>
		<values default="0.1"/>
	</parameter>
	<parameter name="yoffset" type="Numeric" required="false">
		<help><![CDATA[
			Applies if show3D="yes". Number of units by which to
			display the chart as angled, horizontally.
		]]></help>
		<values default="0.1"/>
	</parameter>
	<parameter name="rotated" type="boolean" required="false" compatibility="deprecated">
		<help><![CDATA[
			This attribute is deprecated.
			
			yes: rotate chart 90 degrees. For a horizontal bar chart,
			use this option.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="showlegend" type="boolean" required="false">
		<help><![CDATA[
			yes: if chart contains more than one data series, display
			legend
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="tipstyle" type="String" required="false">
		<help><![CDATA[
			Determines the action that opens a popup window to display
			information about the current chart element.
			* mouseDown: display if the user positions the cursor at the element
			and clicks the mouse. Applies only to Flash format graph files.
			* mouseOver: displays if the user positions the cursor at the element
			* none: suppresses display
		]]></help>
		<values default="mouseOver">
			<value option="mouseDown"/>
			<value option="mouseOver"/>
			<value option="none"/>
		</values>
	</parameter>
	<parameter name="tipbgcolor" type="String" required="false">
		<help><![CDATA[
			color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values default="white">
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="showmarkers" type="boolean" required="false">
		<help><![CDATA[
			Applies to chartseries type attribute values line, curve
			and scatter.
			yes: display markers at data points
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="markersize" type="Numeric" required="false">
		<help><![CDATA[
			Size of data point marker. in pixels. Integer.
		]]></help>
		<values/>
	</parameter>
	<parameter name="pieslicestyle" type="String" required="false">
		<help><![CDATA[
			Applies to chartseries type attribute value pie.
		]]></help>
		<values default="sliced">
			<value option="solid"/>
			<value option="sliced"/>
		</values>
	</parameter>
	<parameter name="URL" type="URL" required="false"><!-- maybe should be string now? -->
		<help><![CDATA[
			URL to open if the user clicks item in a data series; the
			onClick destination page.

			You can specify variables within the URL string;
			ColdFusion passes current values of the variables.
			* $VALUE$: the value of the selected row. If none, the value is an empty string.
			* $ITEMLABEL$: the label of the selected item. If none, the value is an empty string.
			* $SERIESLABEL$: the label of the selected series. If none, the value is an empty string.
		]]></help>
		<values>
			<value option="$VALUE$"/>
			<value option="$ITEMLABEL$"/>
			<value option="$SERIESLABEL$"/>
		</values>
	</parameter>
	<parameter name="name" type="String" returnVarType="variablename" required="false">
		<help><![CDATA[
			Page variable name. String. Generates the the graph as
			binary data and assigns it to the specified variable.
			Suppresses chart display. You can use the name value in
			the cffile tag to write the chart to a file.
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			XML file or string to use to specify the style of the chart.
		]]></help>
		<values>
			<value option="beige"/>
			<value option="blue"/>
			<value option="default"/>
			<value option="red"/>
			<value option="silver"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="title" type="String" required="false">
		<help><![CDATA[
			Title of the chart.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfchartdata
		item = "text"
		value = "number"
--><tag  name="cfchartdata" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Used with the cfchart and cfchartseries tags. This tag defines
		chart data points. Its data is submitted to the cfchartseries
		tag.
	]]></help>
	<parameter name="item" type="String" required="true">
		<help><![CDATA[
			string; data point name
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			number or expression; data point value
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfchartseries
		type = "type"
		query = "queryName"
		itemColumn = "QueryColumn"
		valueColumn = "QueryColumn"
		seriesLabel = "Label Text"
		seriesColor = "Hex value or Web color"
		paintStyle = "plain, raise, shade, light"
		markerStyle = "style"
		colorlist = "list"
		dataLabelStyle = "style"
	/cfchartseries
--><tag  name="cfchartseries" canHaveAttributeCollection="false" endtagrequired="false" single="false" xmlstyle="false">
	<help><![CDATA[
		Used with the cfchart tag. This tag defines the style in which
		chart data displays: bar, line, pie, and so on.
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			Sets the chart display style
		]]></help>
		<values>
			<value option="bar"/>
			<value option="line"/>
			<value option="pyramid"/>
			<value option="area"/>
			<value option="horizontalbar" compatibility="new"/>
			<value option="cone"/>
			<value option="curve"/>
			<value option="cylinder"/>
			<value option="step"/>
			<value option="scatter"/>
			<value option="pie"/>
		</values>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			Name of CFML query from which to get data.
		]]></help>
		<values/>
	</parameter>
	<parameter name="itemcolumn" type="String" required="false">
		<help><![CDATA[
			Name of a column in the query specified in the query
			attribute; contains the item label for a data point to
			graph.
		]]></help>
		<values/>
	</parameter>
	<parameter name="valuecolumn" type="String" required="false">
		<help><![CDATA[
			Name of a column in the query specified in the query
			attribute; contains data values to graph.
		]]></help>
		<values/>
	</parameter>
	<parameter name="serieslabel" type="String" required="false">
		<help><![CDATA[
			Text of data series label
		]]></help>
		<values/>
	</parameter>
	<parameter name="seriescolor" type="String" required="false">
		<help><![CDATA[
			Color of the main element (such as the bars) of a chart.
			For a pie chart, the color of the first slice.

			Hex value or supported named color; see name list in the
			cfchart Usage section.
			For a hex value, use the form "##xxxxxx", where x = 0-9 or
			A-F; use two pound signs or none.
		]]></help>
		<values/>
	</parameter>
	<parameter name="paintstyle" type="String" required="false">
		<help><![CDATA[
			Sets the paint display style of the data series.
		]]></help>
		<values default="plain">
			<value option="plain"/>
			<value option="raise"/>
			<value option="shade"/>
			<value option="light"/>
		</values>
	</parameter>
	<parameter name="markerstyle" type="String" required="false">
		<help><![CDATA[
			Applies to chartseries type attribute values line, curve
			and scatter, and show3D attribute value no.
		]]></help>
		<values default="rectangle">
			<value option="rectangle"/>
			<value option="triangle"/>
			<value option="diamond"/>
			<value option="circle"/>
			<value option="letter"/>
			<value option="mcross"/>
			<value option="snow"/>
			<value option="rcross"/>
		</values>
	</parameter>
	<parameter name="colorlist" type="String" required="false">
		<help><![CDATA[
			Applies if chartseries type attribute = "pie". Sets pie
			slice colors.

			Comma-delimited list of hex values or supported, named web
			colors; see name list in the cfchart Usage section.

			For a hex value, use the form "##xxxxxx", where x = 0-9 or
			A-F; use two pound signs or none.
		]]></help>
		<values/>
	</parameter>
	<parameter name="datalabelstyle" type="String" required="false">
		<help><![CDATA[
			Specifies the way in which the color is applied to the
			item in the series:
			 - None = nothing is printed (default)
			 - Value = the value of the datapoint
			 - Rowlabel = the row's label
			 - Columnlabel = the column's label
			 - Pattern
		]]></help>
		<values>
			<value option="none"/>
			<value option="value"/>
			<value option="rowlabel"/>
			<value option="columnlabel"/>
			<value option="pattern"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfcol
		header = "column_header_text"
		width = "number_indicating_width_of_column"
		align = "Left" or "Right" or "Center"
		text = "column_text"
--><tag  name="cfcol" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Defines table column header, width, alignment, and text. Used
		within a cftable tag.
	]]></help>
	<parameter name="header" type="String" required="true">
		<help><![CDATA[
			Column header text. To use this attribute, you must also
			use the cftable colHeaders attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Column width. If the length of data displayed exceeds this
			value, data is truncated to fit. To avoid this, use an
			HTML table tag.
		]]></help>
		<values default="20"/>
	</parameter>
	<parameter name="align" type="String" required="false">
		<help><![CDATA[
			Column alignment
		]]></help>
		<values default="left">
			<value option="left"/>
			<value option="center"/>
			<value option="right"/>
		</values>
	</parameter>
	<parameter name="text" type="String" required="true">
		<help><![CDATA[
			Double-quotation mark-delimited text; determines what to
			display. Rules: same as for cfoutput sections. You can
			embed hyperlinks, image references, and input controls
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="text">
                    <required>text</required>
                    <optional>align,header,width</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfcollection
		action = "action"
		collection = "collection_name"
		path = "path_to_verity_collection"
		language = "language"
		name = "queryname"
		categories = "true" or "false"
--><tag  name="cfcollection" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Creates, registers, and administers Verity search engine
		collections.

		A collection that is created with the cfcollection tag is
		internal. A collection created any other way is external.

		A collection that is registered with CFML using the
		cfcollection tag or registered with the K2 Server by editing
		the k2server.ini file is registered. Other collections are
		unregistered.
	]]></help>
	<return type="query" parameter="name"/>
	<parameter name="action" isswitchattribute="true" type="String" required="true">
		<help><![CDATA[
			categorylist: retrieves categories from the collection and
				indicates how many documents are in each one. Returns
				a structure of structures in which the category
				representing each substructure is associated with a
				number of documents. For a category in a category tree,
				the number of documents is the number at or below that
				level in the tree.
			create: registers the collection with CFML.
				- If the collection is present: creates a map to it
				- If the collection is not present: creates it
			delete: unregisters a collection.
				- If the collection was registered with action = create:
					deletes its directories
				- If the collection was registered and mapped: does not
					delete collection directories
			optimize: optimizes the structure and contents of the
				collection for searching; recovers space.
			list: returns a query result set, named from the name
				attribute value, of the attributes of the collections
				that are registered by CFML and K2 Server.
			map: creates a map to the collection. It is not necessary
				to specify this value. Deprecated in CF7.
			repair: fixes data corruption in a collection. Deprecated in CF7.
		]]></help>
		<values default="list">
			<value option="categorylist"/>
			<value option="create"/>
			<value option="delete"/>
			<value option="optimize"/>
			<value option="list"/>
			<value option="map" compatibility="deprecated"/>
			<value option="repair" compatibility="deprecated"/>
		</values>
	</parameter>
	<parameter name="collection" type="String" required="false">
		<help><![CDATA[
			A collection name. The name can include spaces
		]]></help>
		<values/>
	</parameter>
	<parameter name="path" type="String" required="false">
		<help><![CDATA[
			Absolute path to a Verity collection.
		]]></help>
		<values/>
	</parameter>
	<parameter name="language" type="String" required="false">
		<help><![CDATA[
			Options are listed in Usage section. Requires the
			appropriate (European or Asian) Verity Locales language
			pack.
		]]></help>
		<values default="english"/>
	</parameter>
	<parameter name="name" type="variableName" required="false">
		<help><![CDATA[
			Name for the query results returned by the list action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="categories" type="boolean" required="false">
		<help><![CDATA[
			Used only for creating a collection:
			 - true: This collection includes support for categories.
			 - false: This collection does not support categories. Default.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<possiblecombinations>
                <combination switchvalue="list">
                    <required>name</required>
                    <optional>collection,language,path</optional>
                </combination>
                <combination switchvalue="purge">
                    <required>collection</required>
                    <optional>language,path</optional>
                </combination>
                <combination switchvalue="create">
                    <required>collection,path</required>
                    <optional>categories,language</optional>
                </combination>
                <combination switchvalue="categorylist">
                    <required>collection,name</required>
                    <optional>language,path</optional>
                </combination>
                <combination switchvalue="optimize">
                    <required>collection</required>
                    <optional>language,path</optional>
                </combination>
                <combination switchvalue="map">
                    <required>collection,path</required>
                    <optional>categories,language</optional>
                </combination>
                <combination switchvalue="delete">
                    <required>collection</required>
                    <optional>language,path</optional>
                </combination>
                <combination switchvalue="repair">
                    <required>collection</required>
                    <optional>language,path</optional>
                </combination>
            </possiblecombinations>
	</parameter>
</tag>
<!--
	cfcomponent
		extends ="anotherComponent"
		output = "boolean"
		displayname = "text string"
		hint = "text string"
		style = "rpc" or "document"
		namespace = "default service namespace"
		serviceportname = "port element name"
		porttypename = "porttype element name"
		bindingname = "binding element name"
		wsdlfile = "path to hard-coded wsdl file">
		
	    [variable declarations cffunction ...]
	/cfcomponent
--><tag  name="cfcomponent" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false" allowanyattribute="true">
	<help><![CDATA[
		Creates and defines a component object; encloses functionality
		that you build in CFML and enclose within cffunction tags.
		This tag contains one or more cffunction tags that define
		methods. Code within the body of this tag, other than
		cffunction tags, is executed when the component is
		instantiated.
	]]></help>
	<parameter name="extends" type="String" required="false">
		<help><![CDATA[
			Name of parent component from which to inherit methods and
			properties.
		]]></help>
		<values/>
	</parameter>
	<parameter name="output" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether constructor code in the component can
			generate HTML output; does not affect output in the body
			of cffunction tags in the component.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="displayname" type="String" required="false">
		<help><![CDATA[
			A string to be displayed when using introspection to show
			information about the CFC. The information appears on the
			heading, following the component name.
			If the style attribute is set to document, the displayname
			attribute is used as the name of the service element in the WSDL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hint" type="String" required="false">
		<help><![CDATA[
			Text to be displayed when using introspection to show
			information about the CFC. The hint attribute value
			appears below the component name heading. This attribute
			can be useful for describing the purpose of the parameter.
			If the style attribute is set to document, the hint
			attribute is used as the document element of the service
			in the WSDL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Name for the component
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			Specifies whether a CFC used for web services uses
			RPC-encoded style or document-literal style:
			 - rpc: RPC-encoded style, default
			 - document: Document-literal style
			If you specify document, you must also specify the namespace,
			serviceportname, porttypename, and bindingname attributes.
		]]></help>
		<values default="rpc">
			<value option="rpc"/>
			<value option="document"/>
		</values>
	</parameter>
	<parameter name="namespace" type="String" required="false">
		<help><![CDATA[
			Specifies the namespace used in the WSDL when
			using the CFC as a document-literal style web service.
			If you don't specify this attribute, ColdFusion MX
			derives the namespace from the CFC class name.
			This attribute applies only when style="document".
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="sttyle" required="false" value="document"/>
		</triggers>
	</parameter>
	<parameter name="serviceportname" type="String" required="false">
		<help><![CDATA[
			Specifies the name of the port element in the WSDL.
			This attribute applies only when style="document".
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="sttyle" required="false" value="document"/>
		</triggers>
	</parameter>
	<parameter name="porttypename" type="String" required="false">
		<help><![CDATA[
			Specifies the name of the porttype element in the WSDL.
			This attribute applies only when style="document".
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="sttyle" required="false" value="document"/>
		</triggers>
	</parameter>
	<parameter name="bindingname" type="String" required="false">
		<help><![CDATA[
			Specifies the name of the binding element in the WSDL.
			This attribute applies only when style="document".
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="sttyle" required="false" value="document"/>
		</triggers>
	</parameter>
	<parameter name="wsdlfile" type="String" required="false">
		<help><![CDATA[
			A properly formatted WSDL file to be used instead of
			WSDL generated by ColdFusion MX.
			This attribute applies only when style="document".
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="sttyle" required="false" value="document"/>
		</triggers>
	</parameter>
</tag>
<!--
	cfcontent
		type = "file_type"
		deleteFile = "boolean"
		file = "filename"
		reset = "boolean"
	[starting with a drive letter and a colon, or a forward
	or backward slash]
--><tag  name="cfcontent" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Does either or both of the following:
		* Sets the MIME content encoding header for the current page
		* Sends the contents of a file from the server as the page
			output
	]]></help>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			The MIME content type of the page, optionally followed by
			a semicolon and the character encoding. By default,
			CFML sends pages as text/html content type in
			the UTF-8 character encoding.
		]]></help>
		<values/>
	</parameter>
	<parameter name="deletefile" type="boolean" required="false">
		<help><![CDATA[
			Applies only if you specify a file with the file attribute.
			
			Yes: deletes the file on the server after sending its
				contents to the client.
			No: leaves the file on the server.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
			Name of file whose contents will be the page output. When
			using CFML in a distributed configuration, the file
			attribute must refer to a path on the system on which the
			web server runs. When you use this attribute, any other
			output on the current CFML page is ignored; only the
			contents of the file is sent to the client.
		]]></help>
		<values/>
	</parameter>
	<parameter name="variable" type="variable" returnVarType="variablename" required="false"><!-- VariableName -->
		<help><![CDATA[
			Name of a ColdFusion MX binary variable whose contents can
			be displayed by the browser, such as the contents of a chart
			generated by the cfchart tag or a PDF or Excel file
			retrieved by a cffile action="readBinary" tag.
			When you use this attribute, any other output on the current
			CFML page is ignored; only the contents of the file are sent
			to the client.
		]]></help>
		<values/>
	</parameter>
	<parameter name="reset" type="boolean" required="false">
		<help><![CDATA[
			The reset and file attributes are mutually exclusive.
			If you specify a file, this attribute has no effect.

			Yes: discards output that precedes call to cfcontent
			No: preserves output that precedes call to cfcontent. In
			this case all output is sent with the specified type.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfcookie
		name = "cookie_name"
		value = "text"
		expires = "period"
		secure = "boolean"
		path = "URL"
		domain = ".domain"
--><tag  name="cfcookie" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Defines web browser cookie variables, including expiration and
		security options.
	]]></help>
	<return type="String" parameter="name"/>
	<parameter name="name" type="String" returnVarType="variablename" required="true">
		<help><![CDATA[
			Name of cookie variable. CFML converts cookie names
			to all-uppercase. Cookie names set using this tag can
			include any printable ASCII characters except commas,
			semicolons or white space characters.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Value to assign to cookie variable. Must be a string or
			variable that can be stored as a string.
		]]></help>
		<values/>
	</parameter>
	<parameter name="expires" type="Object" required="false">
		<help><![CDATA[
			Expiration of cookie variable.

			* The default: the cookie expires when the user closes the
				browser, that is, the cookie is "session only".
			* A date or date/time object (for example, 10/09/97)
			* A number of days (for example, 10, or 100)
			* now: deletes cookie from client cookie.txt file
				(but does not delete the corresponding variable the
				Cookie scope of the active page).
			* never: The cookie expires in 30 years from the time it
				was created (effectively never in web years).
		]]></help>
		<values/>
	</parameter>
	<parameter name="secure" type="boolean" required="false">
		<help><![CDATA[
			If browser does not support Secure Sockets Layer (SSL)
			security, the cookie is not sent. To use the cookie, the
			page must be accessed using the https protocol.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="path" type="String" required="false">
		<help><![CDATA[
			URL, within a domain, to which the cookie applies;
			typically a directory. Only pages in this path can use the
			cookie. By default, all pages on the server that set the
			cookie can access the cookie.

			path = "/services/login"
		]]></help>
		<values/>
	</parameter>
	<parameter name="domain" type="String" required="false">
		<help><![CDATA[
			Domain in which cookie is valid and to which cookie content
			can be sent from the user's system. By default, the cookie
			is only available to the server that set it. Use this
			attribute to make the cookie available to other servers.

			Must start with a period. If the value is a subdomain, the
			valid domain is all domain names that end with this string.
			This attribute sets the available subdomains on the site
			upon which the cookie can be used.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>domain,expires,secure,value</optional>
                </combination>
                <combination attributename="name">
                    <required>domain,name,path</required>
                    <optional>expires,secure,value</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfdefaultcase
	...
	/cfdefaultcase
--><tag  name="cfdefaultcase" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Used only inside the cfswitch tag body. Contains code to
		execute when the expression specified in the cfswitch tag does
		not match any of the values specified by preceeding cfcase tags.
	]]></help>
</tag>
<!--
	cfdirectory
		action = "directory action"
		directory = "directory name"
		name = "query name"
		filter = "list filter"
		mode = "permission"
		sort = "sort specification"
		newDirectory = "new directory name"
		recurse = "true" or "false"
--><tag  name="cfdirectory" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Manages interactions with directories.
		Different combos cause different attributes to be
		required.
	]]></help>
	<return type="query" parameter="name"/>
	<parameter name="action" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="list">
			<value option="list"/>
			<value option="create"/>
			<value option="delete"/>
			<value option="rename"/>
		</values>
	</parameter>
	<parameter name="directory" type="String" required="true">
		<help><![CDATA[
			Absolute pathname of directory against which to perform
			action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="name" type="String" returnVarType="variablename" required="false">
		<help><![CDATA[
			Name for output record set.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="list"/>
		</triggers>
	</parameter>
	<parameter name="filter" type="String" required="false">
		<help><![CDATA[
			File extension filter applied to returned names. For
			example: *.cfm. One filter can be applied.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="false" value="list"/>
		</triggers>
	</parameter>
	<parameter name="mode" type="String" required="false">
		<help><![CDATA[
			Applies only to UNIX and Linux. Permissions. Octal values
			of Unix chmod command. Assigned to owner, group, and
			other, respectively.
		]]></help>
		<values/>
	</parameter>
	<parameter name="sort" type="String" required="false">
		<help><![CDATA[
			Query column(s) by which to sort directory listing.
			Delimited list of columns from query output.
		]]></help>
		<values default="asc">
			<value option="asc"/>
			<value option="desc"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" required="false" value="list"/>
		</triggers>
	</parameter>
	<parameter name="newdirectory" type="String" required="false">
		<help><![CDATA[
			New name for directory.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="false" value="rename"/>
		</triggers>
	</parameter>
	<parameter name="recurse" type="boolean" required="false">
		<help><![CDATA[
			Whether ColdFusion performs the action on subdirectories.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" required="false" value="list"/>
			<selectedValue attributeName="action" required="false" value="delete"/>
		</triggers>
	</parameter>
	<possiblecombinations>
                <combination switchvalue="rename">
                    <required>directory,newdirectory</required>
                    <optional/>
                </combination>
                <combination switchvalue="list">
                    <required>directory,name</required>
                    <optional>action,filter,recurse,sort</optional>
                </combination>
                <combination switchvalue="create">
                    <required>directory</required>
                    <optional>mode</optional>
                </combination>
                <combination switchvalue="delete">
                    <required>directory</required>
                    <optional>recurse</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfdocument
		format = "PDF or FlashPaper"
		filename = "file name"
		overwrite = "true" or "false"
		name = "output variable name"
		pagetype = "page type"
		pageheight = "page height in inches"
		pagewidth = "page width in inches"
		orientation = "portrait/landscape"
		margintop = "number"
		marginbottom = "number"
		marginleft = "number"
		marginright = "number"
		unit = "in" or "cm"
		encryption = "128-bit" or "40-bit" or "none"
		ownerpassword = "password"
		userpassword = "password"
		permissions = "permission list"
		fontembed = "true" or "false"
		backgroundvisible = "true" or "false"
		scale = "percentage less than 100"
		...HTML and CFML code...
	/cfdocument
--><tag  name="cfdocument" canHaveAttributeCollection="false" endtagrequired="true" single="false" xmlstyle="false">
	<help><![CDATA[
		Creates PDF or FlashPaper output from a text block containing CFML and HTML.
	]]></help>
	   <return parameter="name" type="variablename" />
	<parameter name="format" type="String" required="true">
		<help><![CDATA[
			Specifies the report format.
		]]></help>
		<values>
			<value option="PDF"/>
			<value option="FlashPaper"/>
		</values>
	</parameter>
	<parameter name="filename" type="String" required="false">
		<help><![CDATA[
			Specifies the fully qualified path name of a file to
			contain the PDF or FlashPaper output. If you omit the
			filename attribute, ColdFusion MX streams output to
			the browser.
		]]></help>
		<values/>
	</parameter>
	<parameter name="overwrite" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether ColdFusion MX overwrites an
			existing file. Used in conjunction with filename.
			Default is: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="name" type="String" returnVarType="variablename" required="false">
		<help><![CDATA[
			Specifies the name of an existing variable into which
			the tag stores the PDF or FlashPaper output.
		]]></help>
		<values/>
	</parameter>
	<parameter name="pagetype" type="String" required="false">
		<help><![CDATA[
			Specifies the page size into which ColdFusion
			generates the report.
			 - legal: 8.5 inches x 14 inches
			 - letter: 8.5 inches x 11 inches
			 - A4: 8.27 inches x 11.69 inches
			 - A5: 5.81 inches x 8.25 inches
			 - B5: 9.81 inches x 13.88 inches
			 - Custom: Custom height and width.
			If you specify custom, you must also specify the pageheight
			and pagewidth attributes, can optionally specify margin
			attributes, and can optionally specify whether the units
			are inches or centimeters.
		]]></help>
		<values default="A4">
			<value option="legal"/>
			<value option="letter"/>
			<value option="A4"/>
			<value option="A5"/>
			<value option="B5"/>
			<value option="custom"/>
		</values>
	</parameter>
	<parameter name="pageheight" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the page height in inches (default) or
			centimeters. This attribute is only valid if
			pagetype=custom. To specify page height in
			centimeters, include the unit=cm attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="pagewidth" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the page width in inches (default) or
			centimeters. This attribute is only valid if
			pagetype=custom. To specify page width in
			centimeters, include the unit=cm attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="orientation" type="String" required="false">
		<help><![CDATA[
			Specifies the page orientation. Specify either of the
			following:
			 - portrait (default)
			 - landscape
		]]></help>
		<values default="portrait">
			<value option="portrait"/>
			<value option="landscape"/>
		</values>
	</parameter>
	<parameter name="margintop" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the top margin in inches (default) or
			centimeters. To specify top margin in centimeters,
			include the unit=cm attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="marginbottom" type="String" required="false">
		<help><![CDATA[
			Specifies the bottom margin in inches (default) or
			centimeters. To specify bottom margin in
			centimeters, include the unit=cm attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="marginleft" type="String" required="false">
		<help><![CDATA[
			Specifies the left margin in inches (default) or
			centimeters. To specify left margin in centimeters,
			include the unit=cm attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="marginright" type="String" required="false">
		<help><![CDATA[
			Specifies the right margin in inches (default) or
			centimeters. To specify right margin in centimeters,
			include the unit=cm attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="unit" type="String" required="false">
		<help><![CDATA[
			Specifies the default unit (inches or centimeters) for
			pageheight, pagewidth, and margin attributes.
		]]></help>
		<values default="in">
			<value option="in"/>
			<value option="cm"/>
		</values>
	</parameter>
	<parameter name="encryption" type="String" required="false">
		<help><![CDATA[
			Specifies whether the output is encrypted (format="PDF" only).
			Default is: none
		]]></help>
		<values default="none">
			<value option="128-bit"/>
			<value option="40-bit"/>
			<value option="none"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="pdf"/>
		</triggers>
	</parameter>
	<parameter name="ownerpassword" type="String" required="false">
		<help><![CDATA[
			Specifies an owner password (format="PDF" only).
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="pdf"/>
		</triggers>
	</parameter>
	<parameter name="userpassword" type="String" required="false">
		<help><![CDATA[
			Specifies a user password (format="PDF" only).
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="pdf"/>
		</triggers>
	</parameter>
	<parameter name="permissions" type="String" required="false">
		<help><![CDATA[
			Specifies one or more permissions (format="PDF" only).
			Separate multiple permissions with a comma.
		]]></help>
		<values>
			<value option="AllowPrinting,AllowCopy,AllowScreenReaders"/>
			<value option="AllowPrinting"/>
			<value option="AllowModifyContents"/>
			<value option="AllowCopy"/>
			<value option="AllowModifyAnnotations"/>
			<value option="AllowFillIn"/>
			<value option="AllowScreenReaders"/>
			<value option="AllowAssembly"/>
			<value option="AllowDegradedPrinting"/>
			<value option="AllowPrinting,AllowModifyContents,AllowCopy,AllowModifyAnnotations,AllowFillIn,AllowScreenReaders,AllowAssembly,AllowDegradedPrinting"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="pdf"/>
		</triggers>
	</parameter>
	<parameter name="fontembed" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether ColdFusion embeds fonts in the output.
			Specify one of the following:
			 - true: Embed fonts
			 - false: Do not embed fonts.
			Selective: Embed all fonts except Java fonts and core fonts.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="backgroundvisible" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether the background prints when the
			user prints the document:
			 - yes: include the background when printing.
			 - no: do not include the background when printing.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="scale" type="Numeric" required="false">
		<help><![CDATA[
			Specifies a scale factor as a percentage. Use this
			option to reduce the size of the HTML output so that
			it fits on that paper. Specify a number less than 100.
		]]></help>
		<values>
			<value option="100"/>
			<value option="90"/>
			<value option="80"/>
			<value option="70"/>
			<value option="60"/>
			<value option="50"/>
			<value option="40"/>
			<value option="30"/>
			<value option="20"/>
			<value option="10"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="format">
                    <required>format</required>
                    <optional>backgroundvisible,encryption,filename,fontembed,marginbottom,marginleft,marginright,margintop,name,orientation,overwrite,ownerpassword,pageheight,pagetype,pagewidth,permissions,scale,unit,userpassword</optional>
                </combination>
                <combination attributename="format">
                    <required>format</required>
                    <optional>backgroundvisible,encryption,filename,fontembed,marginbottom,marginleft,marginright,margintop,name,orientation,overwrite,ownerpassword,pageheight,pagetype,pagewidth,permissions,scale,unit,userpassword</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfdocument ...
		Syntax 1
		cfdocumentitem type = "pagebreak" /
		
		Syntax 2
		cfdocumentitem
			type = "header" or "footer"
		header/footer text
		/cfdocumentitem
	/cfdocument
--><tag  name="cfdocumentitem" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="true">
	<help><![CDATA[
		Specifies action items for a PDF or FlashPaper document
		created by the cfdocument tag.
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			Specifies the action:
			 - pagebreak: start a new page at the location of the tag.
			 - header: use the text between the <cfdocumentitem>
			   and </cfdocumentitem> tags as the running header.
			 - footer: use the text between the <cfdocumentitem>
			   and </cfdocumentitem> tags as the running footer.
		]]></help>
		<values>
			<value option="pagebreak"/>
			<value option="header"/>
			<value option="footer"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="type">
                    <required>type</required>
                    <optional/>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfdocument ...
		cfdocumentsection
			margintop = "number"
			marginbottom = "number"
			marginleft = "number"
			marginright = "number"
		HTML, CFML, and cfdocumentitem tags
		/cfdocumentsection
	/cfdocument
--><tag  name="cfdocumentsection" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Divides a PDF or FlashPaper document into sections.
		By using this tag in conjunction with a cfdocumentitem
		tag, each section can have unique headers, footers,
		and page numbers.
	]]></help>
	<parameter name="margintop" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the top margin in inches (default) or
			centimeters. To specify the top margin in centimeters,
			include the unit="cm" attribute in the parent cfdocument
			tag.
		]]></help>
		<values/>
	</parameter>
	<parameter name="marginbottom" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the bottom margin in inches (default) or
			centimeters. To specify the bottom margin in
			centimeters, include the unit="cm" attribute in the
			parent cfdocument tag.
		]]></help>
		<values/>
	</parameter>
	<parameter name="marginleft" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the left margin in inches (default) or
			centimeters. To specify the left margin in centimeters,
			include the unit="cm" attribute in the parent cfdocument
			tag.
		]]></help>
		<values/>
	</parameter>
	<parameter name="marginright" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the right margin in inches (default) or
			centimeters. To specify the right margin in centimeters,
			include the unit="cm" attribute in the parent cfdocument
			tag.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfdump
		var = "#variable#"
		expand = "boolean"
		label = "text"
--><tag  name="cfdump" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Outputs the elements, variables and values of most kinds of
		CFML objects. Useful for debugging. You can display the
		contents of simple and complex variables, objects, components,
		user-defined functions, and other elements.
	]]></help>
	<parameter name="var" type="variablename" required="true">
		<help><![CDATA[
			Variable to display. Enclose a variable name in pound
			signs.
		]]></help>
		<values/>
	</parameter>
	<parameter name="expand" type="boolean" required="false">
		<help><![CDATA[
			Yes: In Internet Explorer and Mozilla, expands views
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			A string; header for the dump output.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfelse
--><tag  name="cfelse" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Used as the last control block in a cfif tag block to handle
		any case not identified by the cfif tag or a cfelseif tag.
	]]></help>
</tag>
<!--
	cfelseif
		expression
--><tag  name="cfelseif" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Used as a control block in a cfif tag block to handle any case
		not identified by the cfif tag or a cfelseif tag.
	]]></help>
</tag>
<!--
	cferror
		type = "a type"
		template = "template_path"
		mailTo = "email_address"
		exception = "exception_type"
--><tag  name="cferror" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Displays a custom HTML page when an error occurs. This lets
		you maintain a consistent look and feel among an application's
		functional and error pages
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			Type of error that the custom error page handles. The type
			also determines how CFML handles the error page. For
			more information, see Specifying a custom error page in
			Developing CFML MX Applications.

			exception: a exception of the type specified by the
				exception attribute.
			validation: errors recognized by sever-side type
				validation.
			request: any encountered error.
			monitor: deprecated.
		]]></help>
		<values>
			<value option="exception"/>
			<value option="validation"/>
			<value option="request"/>
			<value option="monitor" compatibility="deprecated"/>
		</values>
	</parameter>
	<parameter name="template" type="String" required="true">
		<help><![CDATA[
			Relative path to the custom error page.
			(A CFML page was formerly called a template.)
		]]></help>
		<values/>
	</parameter>
	<parameter name="mailto" type="String" required="false">
		<help><![CDATA[
			An E-mail address. This attribute is available on the
			error page as the variable error.mailto. CFML does
			not automatically send anything to this address.
		]]></help>
		<values/>
	</parameter>
	<parameter name="exception" type="String" required="false">
		<help><![CDATA[
			Type of exception that the tag handles:

			application: application exceptions
			database: database exceptions
			template: CFML page exceptions
			security: security exceptions
			object: object exceptions
			missingInclude: missing include file exceptions
			expression: expression exceptions
			lock: lock exceptions
			custom_type: developer-defined exceptions, defined in the
				cfthrow tag
			any: all exception types
		]]></help>
		<values default="any">
			<value option="any"/>
			<value option="application"/>
			<value option="database"/>
			<value option="template"/>
			<value option="security"/>
			<value option="object"/>
			<value option="missinginclude"/>
			<value option="expression"/>
			<value option="lock"/>
			<value option="custom_type"/>
		</values>
		<possiblecombinations>
                <combination attributename="template">
                    <required>template,type</required>
                    <optional>exception,mailto</optional>
                </combination>
                <combination attributename="type">
                    <required>template,type</required>
                    <optional>exception,mailto</optional>
                </combination>
            </possiblecombinations>
	</parameter>
</tag>
<!--
	cfexecute
		name = " ApplicationName "
		arguments = "CommandLine Arguments"
		outputFile = "Output file name"
	   	variable = "variable name"
	   	timeout = "Timeout interval"
	   	...
	/cfexecute
--><tag  name="cfexecute" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Executes a CFML developer-specified process on a server
		computer.
	]]></help>
	<return parameter="variable" type="variablename"/>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Absolute path of the application to execute.

			On Windows, you must specify an extension; for example,
			C:\myapp.exe.
		]]></help>
		<values/>
	</parameter>
	<parameter name="arguments" type="Object" required="false">
		<help><![CDATA[
			Command-line variables passed to application. If specified
			as string, it is processed as follows:
			* Windows: passed to process control subsystem for parsing.
			* UNIX: tokenized into an array of arguments. The default
				token separator is a space; you can delimit arguments
				that have embedded spaces with double quotation marks.
			If passed as array, it is processed as follows:
			* Windows: elements are concatenated into a string of
				tokens, separated by spaces. Passed to process control
				subsystem for parsing.
			* UNIX: elements are copied into an array of exec()
				arguments
		]]></help>
		<values/>
	</parameter>
	<parameter name="outputfile" type="String" required="false">
		<help><![CDATA[
			File to which to direct program output. If no outputfile or
			variable attribute is specified, output is displayed on
			the page from which it was called.

			If not an absolute path (starting a with a drive letter and
			a colon, or a forward or backward slash), it is relative
			to the CFML temporary directory, which is returned
			by the GetTempDirectory function.
		]]></help>
		<values/>
	</parameter>
	<parameter name="variable" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Variable in which to put program output. If no outputfile
			or variable attribute is specified, output is displayed on
			page from which it was called.
		]]></help>
		<values/>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Length of time, in seconds, that CFML waits for
			output from the spawned program.
		]]></help>
		<values default="0"/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>arguments,outputfile,timeout</optional>
                </combination>
                <combination attributename="name">
                    <required>name</required>
                    <optional>arguments,timeout,variable</optional>
                </combination>
                <combination attributename="name">
                    <required>name</required>
                    <optional>arguments,outputfile,timeout</optional>
                </combination>
                <combination attributename="name">
                    <required>name</required>
                    <optional>arguments,timeout,variable</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfexit
		method = "method"
--><tag  name="cfexit" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		This tag aborts processing of the currently executing CFML
		custom tag, exits the page within the currently executing CFML
		custom tag, or re-executes a section of code within the
		currently executing CFML custom tag.
	]]></help>
	<parameter name="method" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
			exittag: aborts processing of currently executing tag
			exittemplate: exits page of currently executing tag
			loop: reexecutes body of currently executing tag
		]]></help>
		<values>
			<value option="exittag"/>
			<value option="exittemplate"/>
			<value option="loop"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination switchvalue="exittemplate">
                    <required/>
                    <optional/>
                </combination>
                <combination switchvalue="exittag">
                    <optional>method</optional>
                </combination>
                <combination switchvalue="loop">
                    <required/>
                    <optional/>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cffile
		action = "upload"
		fileField = "formfield"
		destination = "full_path_name"
		nameConflict = "behavior"
		accept = "mime_type/file_type"
		mode = "permission"
		attributes = "file_attribute_or_list">
		source = "full_path_name"
		charset = "charset_option">
		file = "full_path_name">
		variable = "var_name">
		output = "content"
		result = "result name"
		addNewLine = "boolean"
		fixnewline = "boolean"
--><tag  name="cffile" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Manages interactions with server files.
		Different combonations cause different attributes to be
		required.
	]]></help>
	<return parameter="result" type="variablename"/>
            <return parameter="variable" type="variablename"/>
	<parameter name="action" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
			Type of file manipulation that the tag performs.
		]]></help>
		<values>
			<value option="append"/>
			<value option="copy"/>
			<value option="delete"/>
			<value option="move"/>
			<value option="read"/>
			<value option="readbinary"/>
			<value option="rename"/>
			<value option="upload"/>
			<value option="write"/>
		</values>
	</parameter>
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
			Pathname of the file.
		]]></help>
		<values/>
		<triggers>
		<!-- keep all of them, check which ones are NOT required
			 status="required|optional|error"/>
		-->
			
			<selectedValue attributeName="action" value="append" required="true" status="required"/>
			<selectedValue attributeName="action" value="delete" required="true" status="required"/>
			<selectedValue attributeName="action" value="read" required="true" status="required"/>
			<selectedValue attributeName="action" value="readBinary" required="true" status="required"/>
			<selectedValue attributeName="action" value="write" required="true" status="required"/>
		</triggers>
	</parameter>
	<parameter name="mode" type="String" required="false">
		<help><![CDATA[
			Applies only to UNIX and Linux. Permissions. Octal values
			of Unix chmod command. Assigned to owner, group, and
			other, respectively.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="append" required="false" status="optional"/>
			<selectedValue attributeName="action" value="copy" required="false" status="optional"/>
			<selectedValue attributeName="action" value="move" required="false" status="optional"/>
			<selectedValue attributeName="action" value="upload" required="false" status="optional"/>
			<selectedValue attributeName="action" value="write" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="output" type="String" required="false">
		<help><![CDATA[
			String to add to the file
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="append" required="true" status="required"/>
			<selectedValue attributeName="action" value="write" required="true" status="required"/>
		</triggers>
	</parameter>
	<parameter name="addnewline" type="boolean" required="false">
		<help><![CDATA[
			Yes: appends newline character to text written to file
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" value="append" required="false" status="optional"/>
			<selectedValue attributeName="action" value="write" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="attributes" type="String" required="false">
		<help><![CDATA[
			Applies to Windows. A comma-delimited list of attributes
			to set on the file.

			If omitted, the file's attributes are maintained.
		]]></help>
		<values>
			<value option="readonly"/>
			<value option="hidden"/>
			<value option="normal"/>
			<value option="system" compatibility="deprecated"/>
			<value option="temporary" compatibility="deprecated"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" value="append" required="false" status="optional"/>
			<selectedValue attributeName="action" value="move" required="false" status="optional"/>
			<selectedValue attributeName="action" value="rename" required="false" status="optional"/>
			<selectedValue attributeName="action" value="upload" required="false" status="optional"/>
			<selectedValue attributeName="action" value="write" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			The character encoding in which the file contents is
			encoded.

			For more information on character encodings, see:
			www.w3.org/International/O-charset.html.
		]]></help>
		<values>
			<value option="utf-8"/>
			<value option="iso-8859-1"/>
			<value option="windows-1252"/>
			<value option="us-ascii"/>
			<value option="shift_jis"/>
			<value option="iso-2022-jp"/>
			<value option="euc-jp"/>
			<value option="euc-kr"/>
			<value option="big5"/>
			<value option="euc-cn"/>
			<value option="utf-16"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" value="append" required="false" status="optional"/>
			<selectedValue attributeName="action" value="read" required="false" status="optional"/>
			<selectedValue attributeName="action" value="write" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="source" type="String" required="false">
		<help><![CDATA[
			Pathname of the file (durring copy).
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="copy" required="true" status="required"/>
			<selectedValue attributeName="action" value="move" required="true" status="required"/>
			<selectedValue attributeName="action" value="rename" required="true" status="required"/>
		</triggers>
	</parameter>
	<parameter name="destination" type="String" required="false">
		<help><![CDATA[
			Pathname of a directory or file on web server
			(durring copy).
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="copy" required="true" status="required"/>
			<selectedValue attributeName="action" value="move" required="true" status="required"/>
			<selectedValue attributeName="action" value="rename" required="true" status="required"/>
			<selectedValue attributeName="action" value="upload" required="true" status="required"/>
		</triggers>
	</parameter>
	<parameter name="variable" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Name of variable to contain contents of text file.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="read" required="true" status="required"/>
			<selectedValue attributeName="action" value="readBinary" required="true" status="required"/>
		</triggers>
	</parameter>
	<parameter name="filefield" type="String" required="false">
		<help><![CDATA[
			Name of form field used to select the file.

			Do not use pound signs (#) to specify the field name.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="upload" required="true" status="required"/>
		</triggers>
	</parameter>
	<parameter name="nameconflict" type="String" required="false">
		<help><![CDATA[
			Action to take if filename is the same as that of a file
			in the directory.
		]]></help>
		<values>
			<value option="error"/>
			<value option="skip"/>
			<value option="overwrite"/>
			<value option="makeunique"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" value="upload" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="accept" type="String" required="false">
		<help><![CDATA[
			Limits the MIME types to accept. Comma-delimited list. For
			example, to permit JPG and Microsoft Word file uploads:

			accept = "image/jpg, application/msword"
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" value="upload" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="result" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Allows you to specify a name for the variable in which cffile
			returns the result (or status) parameters. If you do not specify
			a value for this attribute, cffile uses the prefix "cffile".
		]]></help>
		<values default="cffile"/>
		<triggers>
			<selectedValue attributeName="action" value="upload" required="false" status="optional"/>
		</triggers>
	</parameter>
	<parameter name="fixnewline" required="false" type="String">
		<help><![CDATA[
			* Yes: changes embedded line-ending characters in string
			variables to operating-system specific line endings
			* No: (default) do not change embedded line-ending
			characters in string variables.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" value="append" required="false" status="optional"/>
			<selectedValue attributeName="action" value="write" required="false" status="optional"/>
		</triggers>
	</parameter>
	 <possiblecombinations>
                <combination switchvalue="rename">
                    <required>destination,source</required>
                    <optional>attributes,mode</optional>
                </combination>
                <combination switchvalue="append">
                    <required>file,output</required>
                    <optional>addnewline,attributes,fixnewline,mode,charset</optional>
                </combination>
                <combination switchvalue="write">
                    <required>file,output</required>
                    <optional>addnewline,attributes,charset,fixnewline,mode</optional>
                </combination>
                <combination switchvalue="readbinary">
                    <required>file,variable</required>
                    <optional>attributes</optional>
                </combination>
                <combination switchvalue="copy">
                    <required>destination,source</required>
                    <optional>attributes,mode</optional>
                </combination>
                <combination switchvalue="upload">
                    <required>destination,filefield</required>
                    <optional>accept,attributes,mode,nameconflict,result</optional>
                </combination>
                <combination switchvalue="delete">
                    <required>file</required>
                    <optional>attributes,mode</optional>
                </combination>
                <combination switchvalue="move">
                    <required>destination,source</required>
                    <optional>attributes,charset,mode</optional>
                </combination>
                <combination switchvalue="read">
                    <required>file,variable</required>
                    <optional>attributes,charset,mode</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfflush
		interval = "integer number of bytes"
--><tag  name="cfflush" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Flushes currently available data to the client.
	]]></help>
	<parameter name="interval" type="Numeric" required="false">
		<help><![CDATA[
			Flushes output each time this number of bytes becomes
			available. HTML headers, and data that is already
			available when the tag is executed, are omitted from the
			count.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfform
		name = "name"
		action = "form_action"
		method = "POST" or "GET"
		format = "HTML" or "Flash" or "XML"
		skin = "Flash or XSL skin"
		style = "style specification"
		preserveData = "boolean"
		onSubmit = "javascript"
		onReset = "javascript"
		scriptSrc = "path"
		codeBase = "URL"
		archive = "URL"
	The following attributes are supported in Flash and XML only
		width = "pixels or percent"
		height = "pixels or percent"
		The following attributes are supported in Flash only
		onError = "ActionScript code"
		wMode = "window", "transparent", or "opaque"
		accessible = "boolean"
		preloader = "boolean"
		timeout = "seconds"
	The following attributes are supported in HTML and XML only
		class = "form class"
		enctype = "Internet media type"
		id = "HTML id"
		class = "css class"
		style = "css style"
		onload = "load event script"
		onreset = "reset event script"
		target = "target window or frame"
	...
	/cfform
--><tag  name="cfform" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Builds a form with CFML custom control tags; these provide
		more functionality than standard HTML form input elements.
	]]></help>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			In HTML format, if you omit this attribute and specify
			an id attribute, ColdFusion does not include a name
			attribute in the HTML sent to the browser; this
			behavior lets you use the cfform tag to create
			XHTML-compliant forms. If you omit the name
			attribute and the id attribute, ColdFusion generates
			a name of the form CFForm_n where n is a number
			that assigned serially to the forms on a page.
		]]></help>
		<values/>
	</parameter>
	<parameter name="action" type="String" required="false">
		<help><![CDATA[
			Name of CFML page to execute when the form is
			submitted for processing.
		]]></help>
		<values/>
	</parameter>
	<parameter name="method" type="String" required="false">
		<help><![CDATA[
			The method the browser uses to send the form data
			to the server:
			- post: Send the data using the HTTP post method,
			This method sends the data in a separate message
			to the server.
			- get: Send the data using the HTTP get method,
			which puts the form field contents in the URL
			query string.
		]]></help>
		<values default="post">
			<value option="post"/>
			<value option="get"/>
		</values>
	</parameter>
	<parameter name="format" type="String" required="false">
		<help><![CDATA[
			- HTML: Generate an HTML form and send it to the
			client. cfgrid and cftree child controls can be in
			Flash or applet format.
			- Flash: Generate a Flash form and send it to the
			client. All controls are in Flash format.
			- XML: Generate XForms-compliant XML and save
			the results in a variable specified by the name
			attribute. By default, ColdFusion also applies an
			XSL skin and displays the result. For more
			information, see the skin attribute
		]]></help>
		<values default="html">
			<value option="html"/>
			<value option="flash"/>
			<value option="xml"/>
		</values>
	</parameter>
	<parameter name="skin" type="String" required="false">
		<help><![CDATA[
			Flash: Use a Macromedia halo color to stylize the output.
			XML: Specfies whether to apply an XSL skin and
			display the resulting HTML to the client. Can be any
			of the following:
			 - ColdFusion MX skin name: Apply the specified skin.
			 - XSL file name: Apply the skin located in the specified path.
			 - "none": Do not apply an XSL skin. You must use XForms XML then.
			 - (omitted) or "default": Use the ColdFusion MX default skin.
		]]></help>
		<values>
                    <value option="haloSilver"/>
                    <value option="haloBlue"/>
                    <value option="haloGreen"/>
                    <value option="haloOrange"/>
                    <value option="beige"/>
                    <value option="blue"/>
                    <value option="bluegray"/>
                    <value option="lightgray"/>
                    <value option="red"/>
                    <value option="silver"/>
                    <value option="none"/>
                    <value option="default"/>
                    <value option="basic"/>
                    <value option="basiccss"/>
                </values>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="preservedata" type="boolean" required="false">
		<help><![CDATA[
			When the cfform action attribute posts back to the same
			page as the form, this determines whether to override the
			control values with the submitted values.
			 - false: values specified in the control tag attributes are used
			 - true: corresponding submitted values are used
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" value="html" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="onload" type="String" required="false">
		<help><![CDATA[
			JavaScript to execute when the form loads.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" value="html" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="onsubmit" type="String" required="false">
		<help><![CDATA[
			JavaScript or Actionscript function to execute to
			preprocess data before form is submitted. If any
			child tags specify onSubmit field validation, ColdFusion
			does the validation before executing this JavaScript.
		]]></help>
		<values/>
	</parameter>
	<parameter name="codebase" type="String" required="false">
		<help><![CDATA[
			URL of downloadable JRE plug-in (for Internet Explorer only).
			Default: /CFIDE/classes/cf-j2re-win.cab
		]]></help>
		<values default="/CFIDE/classes/cf-j2re-win.cab"/>
		<triggers>
			<selectedValue attributeName="format" value="html" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="archive" type="String" required="false">
		<help><![CDATA[
			URL of downloadable Java classes for CFML controls.
			Default: /CFIDE/classes/cfapplets.jar
		]]></help>
		<values default="/CFIDE/classes/cfapplets.jar"/>
		<triggers>
			<selectedValue attributeName="format" value="html" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="height" type="String" required="false">
		<help><![CDATA[
			The height of the form. Use a number to specify
			pixels, In Flash, you can use a percentage value to
			specify a percentage of the available width. The
			displayed height might be less than the specified size.
		]]></help>
		<values default="100%"/>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="width" type="String" required="false">
		<help><![CDATA[
			The width of the form. Use a number to specify
			pixels, In Flash, you can use a percentage value to
			specify a percentage of the available width.
		]]></help>
		<values default="100%"/>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			Applies only for onSubmit or onBlur validation; has
			no effect for onServer validation. An ActionScript
			expression or expressions to execute if the user
			submits a form with one or more validation errors.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
		</triggers>
	</parameter>
	<parameter name="wmode" type="String" required="false">
		<help><![CDATA[
			Specifies how the Flash form appears relative to
			other displayable content that occupies the same
			space on an HTML page.
			 - window: The Flash form is the topmost layer on the
			page and obscures anything that would share the
			space, such as drop-down dynamic HTML lists.
			 - transparent: The Flash form honors the z-index of
			dhtml so you can float items above it. If the Flash
			form is above any item, transparent regions in the
			form show the content that is below it.
			 - opaque: The Flash form honors the z-index of
			dhtml so you can float items above it. If the Flash
			form is above any item, it blocks any content that is
			below it.
			Default is: window.
		]]></help>
		<values default="window">
			<value option="window"/>
			<value option="transparent"/>
			<value option="opaque"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
		</triggers>
	</parameter>
	<parameter name="accessible" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether to include support screen readers
			in the Flash form. Screen reader support adds
			approximately 80KB to the SWF file sent to the
			client. Default is: false.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
		</triggers>
	</parameter>
	<parameter name="preloader" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether to display a progress bar when
			loading the Flash form. Default is: true.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
		</triggers>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Integer number of seconds for which to keep the
			form data in the Flash cache on the server. A value of
			0 prevents the data from being cached.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" value="flash" required="false"/>
		</triggers>
	</parameter>
	<parameter name="scriptsrc" type="String" required="false">
		<help><![CDATA[
			Specifies the URL, relative to the web root, of the
			directory that contains the cfform.js file with the
			client-side JavaScript used by this tag and its child
			tags. For XML format forms, this directory is also the
			default directory for XSLT skins.
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			Styles to apply to the form. In HTML or XML format,
			ColdFusion passes the style attribute to the browser
			or XML. In Flash format, must be a style specification
			in CSS format.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onreset" type="String" required="false">
		<help><![CDATA[
			JavaScript to execute when the user clicks a reset button.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" value="html" required="false"/>
			<selectedValue attributeName="format" value="xml" required="false"/>
		</triggers>
	</parameter>
	<parameter name="enctype" type="String" required="false">
		<help><![CDATA[
			MIME type passed through to <FORM>.
		]]></help>
		<values default="application/x-www-form-urlencoded">
			<value option="application/x-www-form-urlencoded"/>
			<value option="multipart/form-data"/>
			<value option="text/plain"/>
		</values>
	</parameter>
	<parameter name="id" type="String" required="false">
		<help><![CDATA[
			HTML id passed through to <FORM>.
		]]></help>
		<values/>
	</parameter>
	<parameter name="target" type="String" required="false">
		<help><![CDATA[
			Target window or frame passed through to <FORM>.
		]]></help>
		<values/>
	</parameter>
	<parameter name="class" type="String" required="false">
		<help><![CDATA[
			Form CSS class passed through to <FORM>.
		]]></help>
		<values/>
	</parameter>
	<parameter name="passthrough" type="String" required="false" compatibility="deprecated">
		<help><![CDATA[
			This attribute is deprecated.
			
			Passes arbitrary attribute-value pairs to the HTML code
			that is generated for the tag. You can use either of the
			following formats:
			
			passthrough="title=""myTitle"""
			passthrough='title="mytitle"'
		]]></help>
		<values/>
	</parameter>
	<parameter name="enablecab" type="String" required="false" compatibility="deprecated">
		<help><![CDATA[
			This attribute is deprecated.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfformgroup
		type = "group type"
		label = "label"
		id = "id"
		style = "style specification"
		selectedIndex = "page number">
		width = "pixels"
		height = "pixels"
		enabled = "boolean"
		visible = "boolean"
		OnChange = "ActionScript expression"
		toolTip = "Tip text"
	...ColdFusion forms controls
	/cfformgroup
	or
	cfformgroup
		id = "id"
		type = "repeater"
		query = "query object"
		startrow = "row number"
		maxrows = "integer">
	...ColdFusion forms controls
	/cfformgroup
--><tag  name="cfformgroup" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Creates a container control for multiple form controls.
		Used in the cfform tag body of Macromedia Flash and XML
		forms. Ignored in HTML forms.
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			For XML forms can be any XForms group type defined in the XSLT.
			For Flash see the value options and docs for more information.
		]]></help>
		<values>
			<value option="-- XML --"/>
			<value option="horizontal"/>
			<value option="vertical"/>
			<value option="fieldset"/>
			<value option="-- Flash --"/>
			<value option="repeater"/>
			<value option="horizontal"/>
			<value option="vertical"/>
			<value option="hbox"/>
			<value option="vbox"/>
			<value option="hdividedbox"/>
			<value option="vdividedbox"/>
			<value option="panel"/>
			<value option="tile"/>
			<value option="accordion"/>
			<value option="tabnavigator"/>
			<value option="page"/>
		</values>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			The query to use with the repeater. Flash creates an
			instance of each of the cfformgroup tag's child tags for
			each row in the query. You can use the bind attribute in
			the child tags to use data from the query row for the
			instance.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" value="repeater" required="true"/>
		</triggers>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			Used only for the repeater type; ignored otherwise.
			Specifies the row number of the first row of the query to
			use in the Flash form repeater. This attribute is zerobased:
			the first row is row 0, not row 1 (as in most ColdFusion tags).
			Default: 0
		]]></help>
		<values default="0"/>
		<triggers>
			<selectedValue attributeName="type" value="repeater" required="false"/>
		</triggers>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Used only for for the repeater type; ignored otherwise.
			Specifies the maximum number of query rows to use in
			the Flash form repeater. If the query has more rows than
			the sum of the startrow attribute and this value, the
			repeater does not use the remaining rows.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" value="repeater" required="false"/>
		</triggers>
	</parameter>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			Label to apply to the form group. In Flash, does the following:
			- For a page or panel form group, determines the label to
			put on the corresponding accordion pleat, the tabnavigator tab,
			or the panel title bar. For a Flash horizontal or vertical form
			group, specifies the label to put to the left of the group.
			- Ignored in Flash for repeater, hbox, hdividedbox, vbox,
			vdividedbox, tile, accordion, and tabnavigator types.
		]]></help>
		<values/>
	</parameter>
	<parameter name="id" type="String" required="false">
		<help><![CDATA[
			ID for form input element.
		]]></help>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			Flash: A Flash style specification in CSS format.
			XML: An inline CSS style specification.
		]]></help>
		<values/>
	</parameter>
	<parameter name="selectedindex" type="Numeric" required="false">
		<help><![CDATA[
			Used only for accordion and tabnavigator types; ignored
			otherwise. Specifies the page control to display as open,
			where 0 (not 1) specifies the first page control defined in
			the group.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" value="accordion" required="false"/>
			<selectedValue attributeName="type" value="tabnavigator" required="false"/>
		</triggers>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Width of the group container, in pixels. If you omit this
			attribute, Flash automatically sizes the container width.
			Ignored for Flash repeater type.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Height of the group container, in pixels. If you omit this
			attribute, Flash automatically sizes the container height.
			Ignored for Flash repeater type.
		]]></help>
		<values/>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether the controls in the
			form group are enabled. Disabled controls appear in
			light gray.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether the controls in the
			form group are visible. If the controls are invisible, the
			space that would be occupied by visible controls is blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			Flash only: tabnavigator and accordion types only: ActionScript
			expression or expressions to execute when a new tab or
			accordion page is selected. Note: The onChange event
			occurs when the form first displays.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" value="accordion" required="false"/>
			<selectedValue attributeName="type" value="tabnavigator" required="false"/>
		</triggers>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Flash only: Text to display when the mouse pointer hovers in the
			form group area. If a control in the form group also
			specifies a tooltip, Flash displays the control's tolltip
			when the mouse pointer hovers over the control.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfformitem
		type = "hrule, vrule, or spacer"
		style = "style specification"
		width = "pixels"
		height = "pixels"
		visible = "boolean"
	or
	cfformitem
		type= "html or text or script"
		style = "style specification"
		width = "pixels"
		height = "pixels"
		visible = "boolean"
		enabled = "boolean"
		tooltip = "Tip text"
		bind = "bind expresion"
	...text
	/cfformitem
--><tag  name="cfformitem" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="true">
	<help><![CDATA[
		Inserts a horizontal line, a vertical line, a spacer,
		or text in a Flash form. Used in the cfform or cfformgroup
		tag body for Flash and XML forms. Ignored in HTML forms.
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			Form item type. See docs for more details.
		]]></help>
		<values>
			<value option="html"/>
			<value option="text"/>
			<value option="script"/>
			<value option="spacer"/>
			<value option="hrule"/>
			<value option="vrule"/>
		</values>
	</parameter>
	<parameter name="style" type="String" required="true">
		<help><![CDATA[
			Flash: Must be a style specification in CSS format.
			Ignored if the type attribute is html or text.
			XML: ColdFusion passes the style attribute to the XML.
			ColdFusion skins include the style attribute to the
			generated HTML.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Width of the item, in pixels. If you omit this attribute, Flash
			automatically sizes the width. In ColdFusion XSL skins,
			use the style attribute, instead.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Height of the item, in pixels. If you omit this attribute,
			Flash automatically sizes the width. In ColdFusion XSL
			skins, use the style attribute, instead.
		]]></help>
		<values/>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Boolean value specifying whether the control is enabled.
			Disabled text appear in light gray. Has no effect on
			spacers and rules.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Boolean value specifying whether to show the control.
			Space that would be occupied by an invisible control is
			blank. Has no effect on spacers.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Text to display when the mouse pointer hovers over the
			control. Has no effect on spacers.
		]]></help>
		<values/>
	</parameter>
	<parameter name="bind" type="String" required="false">
		<help><![CDATA[
			A Flash bind expression that populates the field with
			information from other form fields. If you use this
			attribute, ColdFusion MX ignores any text that you
			specify in the body of the cftextitem tag. This attribute
			can be useful if the cfformitem tag is in a cfformgroup
			type="repeater" tag.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfftp
		action = "action"
		username = "name"
		password = "password"
		server = "server"
		timeout = "timeout in seconds"
		port = "port"
		connection = "name"
		proxyServer = "proxy server"
		retryCount = "number"
		stopOnError = "boolean"
		passive = "boolean"
	
	OR
	
	cfftp
		action = "action"
		username = "name"
		password = "password"
		name = "query_name"
		server = "server"
		ASCIIExtensionList = "extensions"
		transferMode = "mode"
		failIfExists = "boolean"
		directory = "directory name"
		localFile = "filename"
		remoteFile = "filename"
		item = "directory or file"
		existing = "file or directory name"
		new = "file or directory name"
		proxyServer = "proxy server"
		passive = "boolean"
		result = "result name"
	
	OR
	
	cfftp
		action = "action"
		username = "name"
		password = "password"
		name = "query_name"
		server = "server"
		ASCIIExtensionList = "extensions"
		transferMode = "mode"
		failIfExists = "boolean"
		directory = "directory name"
		localFile = "filename"
		remoteFile = "filename"
		item = "directory or file"
		existing = "file or directory name"
		new = "file or directory name"
		proxyServer = "proxy server"
		passive = "boolean"
		timeout = "timeout in seconds"
		port = "port"
		connection = "name"
		retryCount = "number"
		stopOnError = "boolean"
--><tag  name="cfftp" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Lets users implement File Transfer Protocol (FTP) operations.
	]]></help>
	<return type="Struct" parameter="result"/>	
	<return type="variablename" parameter="connection"/>
	<parameter name="action" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
			FTP operation to perform.
			open: create an FTP connection
			close: terminate an FTP connection
		]]></help>
		<values>
			<value option="open"/>
			<value option="close"/>
			<value option="changedir"/>
			<value option="createdir"/>
			<value option="listdir"/>
			<value option="removedir"/>
			<value option="getfile"/>
			<value option="putfile"/>
			<value option="rename"/>
			<value option="remove"/>
			<value option="getcurrentdir"/>
			<value option="getcurrenturl"/>
			<value option="existsdir"/>
			<value option="existsfile"/>
			<value option="exists"/>
		</values>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username specified in ODBC setup.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="connection" required="true" value=""/>
			<selectedValue attributeName="action" required="true" value="open"/>
		</triggers>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password specified in ODBC setup.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="connection" required="true" value=""/>
			<selectedValue attributeName="action" required="true" value="open"/>
		</triggers>
	</parameter>
	<parameter name="server" type="String" required="false">
		<help><![CDATA[
			FTP server to which to connect; for example,
			ftp.myserver.com
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="connection" required="true" value=""/>
			<selectedValue attributeName="action" required="true" value="open"/>
		</triggers>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Value in seconds for the timeout of all operations,
			including individual data request operations.
		]]></help>
		<values default="30"/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			Remote port to which to connect
		]]></help>
		<values default="21"/>
	</parameter>
	<parameter name="connection" type="variableName" required="false">
		<help><![CDATA[
			Name of the FTP connection. If you specify the username,
			password, and server attributes, and if no connection
			exists for them, CFML creates one. Calls to cfftp
			with the same connection name reuse the connection.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="open"/>
			<selectedValue attributeName="action" required="true" value="close"/>
		</triggers>
	</parameter>
	<parameter name="proxyserver" type="String" required="false">
		<help><![CDATA[
			The proxy server required to access the URL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="retrycount" type="Numeric" required="false">
		<help><![CDATA[
			Number of retries until failure is reported.
		]]></help>
		<values default="1"/>
	</parameter>
	<parameter name="stoponerror" type="boolean" required="false">
		<help><![CDATA[
			Yes: halts processing, displays an appropriate error.
			No: populates the error	variables
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="passive" type="boolean" required="false">
		<help><![CDATA[
			Yes: enable passive mode
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="asciiextensionlist" type="String" required="false">
		<help><![CDATA[
			Delimited list of file extensions that force ASCII
			transfer mode, if transferMode = "auto".
		]]></help>
		<values/>
	</parameter>
	<parameter name="transfermode" type="String" required="false">
		<help><![CDATA[
			ASCII FTP transfer mode
			Binary FTP transfer mode
			Auto FTP transfer mode
		]]></help>
		<values default="auto">
			<value option="auto"/>
			<value option="ascii"/>
			<value option="binary"/>
		</values>
	</parameter>
	<parameter name="failifexists" type="boolean" required="false">
		<help><![CDATA[
			Yes: if a local file with same name exists, getFile fails
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="directory" type="String" required="false">
		<help><![CDATA[
			Directory on which to perform an operation
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="changedir"/>
			<selectedValue attributeName="action" required="true" value="createdir"/>
			<selectedValue attributeName="action" required="true" value="listdir"/>
			<selectedValue attributeName="action" required="true" value="existsdir"/>
		</triggers>
	</parameter>
	<parameter name="localfile" type="String" required="false">
		<help><![CDATA[
			Name of the file on the local file system
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="getfile"/>
			<selectedValue attributeName="action" required="true" value="putfile"/>
		</triggers>
	</parameter>
	<parameter name="remotefile" type="String" required="false">
		<help><![CDATA[
			Name of the file on the FTP server file system.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="getfile"/>
			<selectedValue attributeName="action" required="true" value="putfile"/>
			<selectedValue attributeName="action" required="true" value="existsfile"/>
		</triggers>
	</parameter>
	<parameter name="item" type="String" required="false">
		<help><![CDATA[
			Object of these actions: file or directory.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="remove"/>
			<selectedValue attributeName="action" required="true" value="exists"/>
		</triggers>
	</parameter>
	<parameter name="existing" type="String" required="false">
		<help><![CDATA[
			Current name of the file or directory on the remote server.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="rename"/>
		</triggers>
	</parameter>
	<parameter name="new" type="String" required="false">
		<help><![CDATA[
			New name of file or directory on the remote server
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="rename"/>
		</triggers>
	</parameter>
	<parameter name="name" type="variableName" required="false">
		<help><![CDATA[
			Query name of directory listing.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="listdir"/>
		</triggers>
	</parameter>
	<parameter name="result" type="variableName" required="false">
		<help><![CDATA[
			Specifies a name for the structure in which cfftp
			stores the returnValue variable. If set, this value
			replaces cfftp as the prefix to use when accessing
			returnVariable.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
		         <combination switchvalue="exists">
                    <required>item</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="createdir">
                    <required>directory</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="close">
                    <required>connection</required>
                    <optional>result,retrycount,stoponerror,timeout</optional>
                </combination>
                <combination switchvalue="existsfile">
                    <required>remotefile</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                 <combination switchvalue="removedir">
                    <required>directory</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="changedir">
                    <required>directory</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="getcurrentdir">
                    <required/>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="remove">
                    <required>item</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="existsdir">
                    <required>directory</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="listdir">
                    <required>directory,name</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="rename">
                    <required>existing,new</required>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
                <combination switchvalue="open">
                    <required>server,username</required>
                    <optional>asciiextensionlist,connection,passive,password,port,proxyserver,result,retrycount,stoponerror,timeout,transfermode</optional>
                </combination>
                <combination switchvalue="getfile">
                    <required>remotefile</required>
                    <optional>asciiextensionlist,connection,failifexists,localfile,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,transfermode,username</optional>
                </combination>
                <combination switchvalue="putfile">
                    <required>localfile</required>
                    <optional>asciiextensionlist,connection,passive,password,port,proxyserver,remotefile,result,retrycount,server,stoponerror,timeout,transfermode,username</optional>
                </combination>    
                    <combination switchvalue="getcurrenturl">
                    <required/>
                    <optional>connection,passive,password,port,proxyserver,result,retrycount,server,stoponerror,timeout,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cffunction
		name = "methodName"
		returnType = "dataType"
		roles = "securityRoles"
		access = "methodAccess"
		output = "boolean"
		displayName = "name"
		hint = "hint text"
		description = "function description"
--><tag  name="cffunction" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false" allowanyattribute="true">
	<help><![CDATA[
		Defines a function that you can call in CFML. Required to
		defined CFML component methods.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			A string; a component method that is used within the
			cfcomponent tag.
		]]></help>
		<values/>
	</parameter>
	<parameter name="returntype" type="String" required="false">
		<help><![CDATA[
			String; a type name; data type of the function return value
			Required for a web service; Optional, otherwise.
		]]></help>
		<values default="Any">
			<value option="Any"/>
			<value option="Array"/>
			<value option="Binary"/>
			<value option="boolean"/>
			<value option="date"/>
			<value option="guid"/>
			<value option="Numeric"/>
			<value option="Query"/>
			<value option="String"/>
			<value option="Struct"/>
			<value option="UUID"/>
			<value option="variablename"/>
			<value option="void"/>
			<value option="xml"/>
            <value option="(component name)"/>
		</values>
	</parameter>
	<parameter name="roles" type="String" required="false">
		<help><![CDATA[
			A comma-delimited list of CFML security roles that
			can invoke the method. Only users who are logged in with
			the specified roles can execute the function. If this
			attribute is omitted, all users can invoke the method
		]]></help>
		<values default=""/>
	</parameter>
	<parameter name="access" type="String" required="false">
		<help><![CDATA[
			The client security context from which the method can be
			invoked:

			private: available only to the component that declares the
				method and any components that extend the component in
				which it is defined
			package: available only to the component that declares the
				method, components that extend the component, or any
				other components in the package
			public: available to a locally executing page or component
				method
			remote: available to a locally or remotely executing page
				or component method, or a remote client through a URL,
				Flash, or a web service. To publish the function as a
				web service, this option is required.
		]]></help>
		<values default="public">
			<value option="private"/>
			<value option="package"/>
			<value option="public"/>
			<value option="remote"/>
		</values>
	</parameter>
	<parameter name="output" type="boolean" required="false">
		<help><![CDATA[
			Specifies under which conditions the function can generate
			HTML output.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="displayname" type="String" required="false">
		<help><![CDATA[
			Meaningful only for CFC method parameters. A value to be
			displayed in parentheses following the function name when
			using introspection to show information about the CFC
		]]></help>
		<values/>
	</parameter>
	<parameter name="hint" type="String" required="false">
		<help><![CDATA[
			Meaningful only for CFC method parameters. Text to be
			displayed when using introspection to show information
			about the CFC. The hint attribute value follows the syntax
			line in the function description
		]]></help>
		<values/>
	</parameter>
	<parameter name="description" type="String" required="false">
		<help><![CDATA[
			Supplies a short text description of the function.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfgrid
		name = "name"
		format = "applet" or "flash" or "xml"
		height = "integer"
		width = "integer"
		query = "query_name"
		selectMode = "mode"
		insert = "boolean"
		delete = "boolean"
		font = "column_font"
		fontSize = "size"
		italic = "boolean"
		bold = "boolean"
		textColor = "web color"
		gridLines = "boolean"
		rowHeight = "pixels"
		colHeaders = "boolean"
		colHeaderFont = "font_name"
		colHeaderFontSize = "size"
		colHeaderItalic = "boolean"
		colHeaderBold = "boolean"
		colHeaderTextColor = "web color"
		bgColor = "web color"
		maxRows = "number"
	The following works in Flash format only
		style= "style specification"
		enabled = "boolean"
		visible = "boolean"
		toolTip = "Tip text"
		onChange = "ActionScript"
	The following work in applet and XML format only
		autoWidth = "boolean"
		vSpace = "integer"
		hSpace = "integer"
		align = "value"
		sort = "boolean"
		href = "URL"
		hrefKey = "column_name"
		target = "URL_target"
		appendKey = "boolean"
		highlightHref = "boolean"
		onValidate = "javascript_function"
		onError = "text"
		gridDataAlign = "position"
		rowHeaders = "boolean"
		rowHeaderAlign = "position"
		rowHeaderFont = "font_name"
		rowHeaderFontSize = "size"
		rowHeaderItalic = "boolean"
		rowHeaderBold = "boolean"
		rowHeaderTextColor = "web color"
		colHeaderAlign = "position"
		selectColor = "web color"
		notSupported = "text"
		pictureBar = "boolean"
		insertButton = "text"
		deleteButton = "text"
		sortAscendingButton = "text"
		sortDescendingButton = "text"
	zero or more cfgridcolumn and cfgridrow tags
	/cfgrid
--><tag  name="cfgrid" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Used within the cfform tag. Puts a grid control (a table of
		data) in a CFML form. To specify grid columns and row
		data, use the cfgridcolumn and cfgridrow tags, or use the
		query attribute, with or without cfgridcolumn tags.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name of grid element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="format" type="String" required="false">
		<help><![CDATA[
			- applet: generates a Java applet.
			- Flash: generates a Flash grid control.
			- xml: generates an XMLrepresentation of the grid.
			In XML format forms, includes the generated XML in the form.
			In HTML format forms, puts the XML in a string variable
			with the name specified by the name attribute.
			Default: applet
		]]></help>
		<values default="applet">
			<value option="applet"/>
			<value option="flash"/>
			<value option="xml"/>
		</values>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Control's height, in pixels.
			Default for applet: 300
		]]></help>
		<values default="300"/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Control's width, in pixels.
			Default for applet: 300
		]]></help>
		<value default="300"/>
	</parameter>
	<parameter name="autowidth" type="boolean" required="false">
		<help><![CDATA[
			Yes: sets column widths so that all columns display within
				grid width.
			No: sets columns to equal widths. User can resize columns.
				Horizontal scroll bars are not available, because if
				you specify a column width and set autoWidth = "Yes",
				CFML sets to this width, if possible
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="vspace" type="Numeric" required="false">
		<help><![CDATA[
			Vertical margin above and below control, in pixels.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="hspace" type="Numeric" required="false">
		<help><![CDATA[
			Horizontal spacing to left and right of control, in pixels.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="align" type="String" required="false">
		<help><![CDATA[
			Alignment of the grid cell contents
		]]></help>
		<values>
			<value option="top"/>
			<value option="left"/>
			<value option="bottom"/>
			<value option="baseline"/>
			<value option="texttop"/>
			<value option="absbottom"/>
			<value option="middle"/>
			<value option="absmiddle"/>
			<value option="right"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			Name of query associated with grid control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="insert" type="boolean" required="false">
		<help><![CDATA[
			User can insert row data in grid.
			Takes effect only if selectmode="edit"
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="selectmode" required="false" value="edit"/>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="delete" type="boolean" required="false">
		<help><![CDATA[
			User can delete row data from grid.
			Takes effect only if selectmode="edit"
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="selectmode" required="false" value="edit"/>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="sort" type="boolean" required="false">
		<help><![CDATA[
			The sort button performs simple text sort on column. User
			can sort columns by clicking column head or by clicking
			sort buttons. Not valid with selectmode=browse.

			Yes: sort buttons display on grid control
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="selectMode" required="false" value="edit"/>
			<selectedValue attributeName="selectMode" required="false" value="single"/>
			<selectedValue attributeName="selectMode" required="false" value="row"/>
			<selectedValue attributeName="selectMode" required="false" value="column"/>
		</triggers>
	</parameter>
	<parameter name="font" type="String" required="false">
		<help><![CDATA[
			Font of data in column.
		]]></help>
		<values default="arial">
			<value option="arial"/>
			<value option="times"/>
			<value option="courier"/>
			<value option="arialunicodeMS"/>
		</values>
	</parameter>
	<parameter name="fontsize" type="Numeric" required="false">
		<help><![CDATA[
			Size of text in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="italic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in italics
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="bold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in bold
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="textcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values default="black">
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="href" type="String" required="false">
		<help><![CDATA[
			URL or query column name that contains a URL to hyperlink
			each grid column with.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="hrefkey" type="String" required="false">
		<help><![CDATA[
			The query column to use for the value appended to the href
			URL of each column, instead of the column's value.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="target" type="String" required="false">
		<help><![CDATA[
			Frame in which to open link specified in href.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="appendkey" type="boolean" required="false">
		<help><![CDATA[
			When used with href, passes CFTREEITEMKEY variable
			with the value of the selected tree item in URL to the
			application page specified in the cfform action
			attribute
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="highlighthref" type="boolean" required="false">
		<help><![CDATA[
			Yes: Highlights links that are associated with a cftreeitem
				with a URL attribute value.
			No: Disables highlight.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="onvalidate" type="String" required="false">
		<help><![CDATA[
			JavaScript function to validate user input. The form object,
			input object, and input object value are passed to the
			specified routine, which should return True if validation
			succeeds; False, otherwise.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			JavaScript function to execute if validation fails.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="griddataalign" type="String" required="false">
		<help><![CDATA[
			Left: left-aligns data within column.
			Right: right-aligns data within column.
			Center: center-aligns data within column.
		]]></help>
		<values default="left">
			<value option="left"/>
			<value option="center"/>
			<value option="right"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="gridlines" type="boolean" required="false">
		<help><![CDATA[
			Yes: enables row and column rules in grid control
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="rowheight" type="Numeric" required="false">
		<help><![CDATA[
			Minimum row height, in pixels, of grid control. Used with
			cfgridcolumn type = "Image"; defines space for graphics to
			display in row.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheaders" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays a column of numeric row labels in grid
			control
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheaderalign" type="String" required="false">
		<help><![CDATA[
			Left: left-aligns data within row header
			Right: right-aligns data within row header
			Center: center-aligns data within row header
		]]></help>
		<values default="left">
			<value option="left"/>
			<value option="center"/>
			<value option="right"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheaderfont" type="String" required="false">
		<help><![CDATA[
			Font of data in column.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheaderfontsize" type="Numeric" required="false">
		<help><![CDATA[
			Size of text in column.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheaderitalic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in italics
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheaderbold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in bold
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="rowheadertextcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values default="black">
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="colheaders" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays a column of numeric row labels in grid
			control
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="colheaderalign" type="String" required="false">
		<help><![CDATA[
			Left: left-aligns data within row header
			Right: right-aligns data within row header
			Center: center-aligns data within row header
		]]></help>
		<values default="left">
			<value option="left"/>
			<value option="center"/>
			<value option="right"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="colheaderfont" type="String" required="false">
		<help><![CDATA[
			Font of data in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="colheaderfontsize" type="Numeric" required="false">
		<help><![CDATA[
			Size of text in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="colheaderitalic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in italics
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="colheaderbold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in bold
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="colheadertextcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="bgcolor" type="String" required="false">
		<help><![CDATA[
			Background color of grid control.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="selectcolor" type="String" required="false">
		<help><![CDATA[
			Background color for a selected item.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="selectmode" type="String" required="false">
		<help><![CDATA[
			Selection mode for items in the control.
			- Edit: user can edit grid data. Selecting a cell opens
			  the editor for the cell type.
			- Row: user selections automatically extend to the row
			  that contains selected cell.
			- Single: user selections are limited to selected cell.
			  (Applet only)
			- Column: user selections automatically extend
			  to column that contains selected cell.  (Applet only)
			- Browse: user can only browse grid data.  (Applet only)
		]]></help>
		<values>
			<value option="edit"/>
			<value option="single"/>
			<value option="row"/>
			<value option="column"/>
			<value option="browse"/>
		</values>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows to display in grid.
		]]></help>
		<values/>
	</parameter>
	<parameter name="notsupported" type="String" required="false">
		<help><![CDATA[
			Text to display if a page that contains a Java applet-based
			cfform control is opened by a browser that does not
			support Java or has Java support disabled.
			Default:
			"<b>Browser must support Java to <br>view ColdFusion Java
			Applets!</b>"
		]]></help>
		<values default="&lt;b&gt;Browser must support Java to &lt;br&gt;view ColdFusion Java Applets!&lt;/b&gt;"/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="picturebar" type="boolean" required="false">
		<help><![CDATA[
			Yes: images for Insert, Delete, Sort buttons
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="insertbutton" type="String" required="false">
		<help><![CDATA[
			Text for the insert button. Takes effect only if
			selectmode="edit".
		]]></help>
		<values default="Insert">
			<value option="Insert"/>
			<value option="Add"/>
		</values>
		<triggers>
			<selectedValue attributeName="selectmode" required="false" value="edit"/>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="deletebutton" type="String" required="false">
		<help><![CDATA[
			Text of Delete button text. Takes effect only if
			selectmode="edit".
		]]></help>
		<values default="Delete">
			<value option="Delete"/>
			<value option="Remove"/>
		</values>
		<triggers>
			<selectedValue attributeName="selectmode" required="false" value="edit"/>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="sortascendingbutton" type="String" required="false">
		<help><![CDATA[
			Sort button text
		]]></help>
		<values default="A -&gt; Z">
			<value option="A -&gt; Z"/>
			<value option="Asc"/>
			<value option="Ascending"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="sortdescendingbutton" type="String" required="false">
		<help><![CDATA[
			Sort button text
		]]></help>
		<values default="Z -&gt; A">
			<value option="Z -&gt; A"/>
			<value option="Desc"/>
			<value option="Descending"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="xml"/>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			Flash only: Must be a style specification in CSS format.
			Ignored for type="text".
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying
			whether the control is enabled. A disabled
			control appears in light gray.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying
			whether to show the control. Space that would
			be occupied by an invisible control is blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Flash only: text to display when the
			mouse pointer hovers over the control.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			Flash only: ActionScript to run when the control changes
			due to user action in the control.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>align,appendkey,autowidth,bgcolor,bind,bindonload,bold,colheaderalign,colheaderbold,colheaderfont,colheaderfontsize,colheaderitalic,colheaders,colheadertextcolor,delete,deletebutton,enabled,font,fontsize,format,griddataalign,gridlines,height,highlighthref,href,hrefkey,hspace,insert,insertbutton,italic,label,maxrows,notsupported,onblur,onchange,onerror,onfocus,onvalidate,pagesize,picturebar,preservepageonsort,query,rowheaderalign,rowheaderbold,rowheaderfont,rowheaderfontsize,rowheaderitalic,rowheaders,rowheadertextcolor,rowheaderwidth,rowheight,selectcolor,selectmode,selectonload,sort,sortascendingbutton,sortdescendingbutton,striperowcolor,striperows,style,target,textcolor,tooltip,visible,vspace,width</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfgridcolumn
		name = "column_name"
		header = "header"
		width = "column_width"
		type = "type"
		display = "boolean"
		select = "boolean"
		font = "column_font"
		fontSize = "size"
		italic = "boolean"
		bold = "boolean"
		textColor = "web color" or "expression"
		bgColor = "web color" or "expression"
		dataAlign = "position"
	The following attribute applies to Flash format only
		mask= "format mask"
	The following attribute applies to appliet format only
		href = "URL"
		hrefKey = "column_name"
		target = "URL_target"
		headerFont = "font_name"
		headerFontSize = "size"
		headerItalic = "boolean"
		headerBold = "boolean"
		headerTextColor = "web color"
		headerAlign = "position"
		numberFormat = "format"
		values = "Comma-separated strings and/or numeric range"
		valuesDisplay = "Comma-separated strings and/or numeric range"
		valuesDelimiter = "delimiter character"
--><tag  name="cfgridcolumn" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Used with the cfgrid tag in a cfform. Use this tag to specify
		column data in a cfgrid control. The font and alignment
		attributes used in cfgridcolumn override global font or
		alignment settings defined in cfgrid.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name of grid column element. If grid uses a query, column
			name must specify name of a query column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="header" type="boolean" required="false">
		<help><![CDATA[
			Column header text. Used only if cfgrid colHeaders = "Yes".
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Column width, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="font" type="String" required="false">
		<help><![CDATA[
			Font of data in column.
		]]></help>
		<values default="arial">
			<value option="arial"/>
			<value option="times"/>
			<value option="courier"/>
			<value option="arialunicodeMS"/>
		</values>
	</parameter>
	<parameter name="fontsize" type="Numeric" required="false">
		<help><![CDATA[
			Size of text in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="italic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in italics
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="bold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in bold
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="bgcolor" type="String" required="false">
		<help><![CDATA[
			Background color of control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="textcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="href" type="String" required="false">
		<help><![CDATA[
			URL o r query column name that contains a URL to hyperlink
			each grid column with.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hrefkey" type="String" required="false">
		<help><![CDATA[
			The query column to use for the value appended to the href
			URL of each column, instead of the column's value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="target" type="String" required="false">
		<help><![CDATA[
			Frame in which to open link specified in href.
		]]></help>
		<values/>
	</parameter>
	<parameter name="select" type="boolean" required="false">
		<help><![CDATA[
			Yes: user can select the column in grid control.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="display" type="boolean" required="false">
		<help><![CDATA[
			No: hides column
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			image: grid displays image that corresponds to value in
			column (a built-in CFML image name, or an image in
			cfide\classes directory or subdirectory referenced with
			relative URL). If image is larger than column cell, it is
			clipped to fit. Built-in image names
		]]></help>
		<values>
			<value option="cd"/>
			<value option="computer"/>
			<value option="currency"/>
			<value option="document"/>
			<value option="element"/>
			<value option="folder"/>
			<value option="floppy"/>
			<value option="fixed"/>
			<value option="remote"/>
		</values>
	</parameter>
	<parameter name="headerfont" type="String" required="false">
		<help><![CDATA[
			Font of data in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="headerfontsize" type="Numeric" required="false">
		<help><![CDATA[
			Size of text in column.
		]]></help>
		<values/>
	</parameter>
	<parameter name="headeritalic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in italics
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="headerbold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays grid control text in bold
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="headertextcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="dataalign" type="String" required="false">
		<help><![CDATA[
			Column data alignment
		]]></help>
		<values>
			<value option="left"/>
			<value option="right"/>
			<value option="center"/>
		</values>
	</parameter>
	<parameter name="headeralign" type="String" required="false">
		<help><![CDATA[
			Column header text alignment
		]]></help>
		<values>
			<value option="left"/>
			<value option="right"/>
			<value option="center"/>
		</values>
	</parameter>
	<parameter name="numberformat" type="String" required="false">
		<help><![CDATA[
			Format for displaying numeric data in grid. See
			numberFormat mask characters.
		]]></help>
		<values/>
	</parameter>
	<parameter name="values" type="String" required="false">
		<help><![CDATA[
			Formats cells in column as drop-down list boxes; specify
			items in drop-down list. Example:
			values = "arthur, scott, charles, 1-20, mabel"
		]]></help>
		<values/>
	</parameter>
	<parameter name="valuesdisplay" type="String" required="false">
		<help><![CDATA[
			Maps elements in values attribute to string to display in
			drop-down list. Delimited strings and/or numeric range(s).
		]]></help>
		<values/>
	</parameter>
	<parameter name="valuesdelimiter" type="String" required="false">
		<help><![CDATA[
			Maps elements in values attribute to string to display in
			drop-down list. Delimited strings and/or numeric range(s).
		]]></help>
		<values>
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
			A mask pattern that controls the character pattern
			that the form displays or allows users to input and
			sends to ColdFusion.
			For currency type data, use currency symbol.
			For text or numeric type data use:
			 - A = [A-Za-z]
			 - X = [A-Za-z0-9]
			 - 9 = [0-9]
			 - ? = Any character
			 - all other = the literal character
			For date type data use datetime masks.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>bgcolor,bold,dataalign,display,font,fontsize,header,headeralign,headerbold,headerfont,headerfontsize,headeritalic,headertextcolor,href,hrefkey,italic,mask,numberformat,select,target,textcolor,type,values,valuesdelimiter,valuesdisplay,width</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfgridrow
		data = "col1, col2, ..."
--><tag  name="cfgridrow" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Lets you define a cfgrid that does not use a query as source
		for row data. If a query attribute is specified in cfgrid, the
		cfgridrow tags are ignored.
	]]></help>
	<parameter name="data" type="String" required="true">
		<help><![CDATA[
			Delimited list of column values. If a value contains a
			comma, it must be escaped with another comma
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="data">
                    <required>data</required>
                    <optional/>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfgridupdate
		grid = "gridname"
		dataSource = "data source name"
		tableName = "table name"
		username = "data source username"
		password = "data source password"
		tableOwner = "table owner"
		tableQualifier = "qualifier"
		keyOnly = "boolean"
--><tag  name="cfgridupdate" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Used within a cfgrid tag. Updates data sources directly from
		edited grid data. This tag provides a direct interface with
		your data source.

		This tag applies delete row actions first, then insert row
		actions, then update row actions. If it encounters an error,
		it stops processing rows.
	]]></help>
	<parameter name="grid" type="String" required="true">
		<help><![CDATA[
			Name of cfgrid form element that is the source for the
			update action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="datasource" type="String" required="true">
		<help><![CDATA[
			Name of data source for the update action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="tablename" type="String" required="true">
		<help><![CDATA[
			Table in which to insert form fields.

			ORACLE drivers: must be uppercase.
			Sybase driver: case-sensitive. Must be the same case used
				when table was created
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username specified in ODBC setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password specified in ODBC setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="tableowner" type="String" required="false">
		<help><![CDATA[
			Table owner, if supported.
		]]></help>
		<values/>
	</parameter>
	<parameter name="tablequalifier" type="String" required="false">
		<help><![CDATA[
			For data sources that support table qualifiers, use this
			field to specify qualifier for table. The purpose of table
			qualifiers varies among drivers. For SQL Server and
			Oracle, qualifier refers to name of database that contains
			table. For Intersolv dBASE driver, qualifier refers to
			directory where DBF files are located.
		]]></help>
		<values/>
	</parameter>
	<parameter name="keyonly" type="boolean" required="false">
		<help><![CDATA[
			Applies to the update action:
			Yes: the WHERE criteria are limited to the key values
			No: the WHERE criteria include key values and the original
				values of changed fields
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="grid">
                    <required>grid,tablename</required>
                    <optional>datasource,keyonly,password,tableowner,tablequalifier,username</optional>
                </combination>
                <combination attributename="grid">
                    <required>datasource,grid,tablename</required>
                    <optional>keyonly,password,tableowner,tablequalifier,username</optional>
                </combination>
                <combination attributename="tablename">
                    <required>grid,tablename</required>
                    <optional>datasource,keyonly,password,tableowner,tablequalifier,username</optional>
                </combination>
                <combination attributename="tablename">
                    <required>datasource,grid,tablename</required>
                    <optional>keyonly,password,tableowner,tablequalifier,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfheader
		name = "header_name"
		value = "header_value"
		charset="charset"
	OR
	cfheader
		statusCode = "status_code"
		statusText = "status_text"
--><tag  name="cfheader" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Generates custom HTTP response headers to return to the client.
	]]></help>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Header name
			Required if statusCode not specified
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			HTTP header value
		]]></help>
		<values/>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			The character encoding in which to encode the header value.

			For more information on character encodings, see:
			www.w3.org/International/O-charset.html.
		]]></help>
		<values>
			<value option="utf-8"/>
			<value option="iso-8859-1"/>
			<value option="windows-1252"/>
			<value option="us-ascii"/>
			<value option="shift_jis"/>
			<value option="iso-2022-jp"/>
			<value option="euc-jp"/>
			<value option="euc-kr"/>
			<value option="big5"/>
			<value option="euc-cn"/>
			<value option="utf-16"/>
		</values>
	</parameter>
	<parameter name="statuscode" type="Numeric" required="false">
		<help><![CDATA[
			HTTP status code
			Required if name not specified
  				]]></help>
		<values/>
	</parameter>
	<parameter name="statustext" type="String" required="false">
		<help><![CDATA[
			Explains status code
  				]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfhtmlhead
		text = "text"
--><tag  name="cfhtmlhead" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Writes text to the head section of a generated HTML page. It is
		useful for embedding JavaScript code, or putting other HTML
		tags, such as meta, link, title, or base in an HTML page
		header.
	]]></help>
	<parameter name="text" type="String" required="true">
		<help><![CDATA[
			Text to add to the <head> area of an HTML page.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="text">
                    <required>text</required>
                    <optional/>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfhttp
		url = "server_URL"
		port = "port_number"
		method = "method_name"
		proxyServer = "hostname"
		proxyPort = "port_number"
		proxyUser = "username"
		proxyPassword = "password"
		username = "username"
		password = "password"
		userAgent = "user_agent"
		charset = "character encoding"
		resolveURL = "boolean"
		throwOnError = "yes" or no"
		redirect = "boolean"
		timeout = "timeout_period"
		getasbinary = "boolean"
		multipart = "boolean"
		path = "path"
		file = "filename"
		name = "queryname"
		columns = "query_columns"
		firstrowasheaders = "boolean"
		delimiter = "character"
		textQualifier = "character"
		result = "result name"
	   [cfhttpparam tags - optional for some methods]
   /cfhttp
--><tag  name="cfhttp" canHaveAttributeCollection="false" endtagrequired="false"  single="false" xmlstyle="false" hybrid="true">
	<help><![CDATA[
		Generates an HTTP request and handles the response from the
		server.
	]]></help>
	<return parameter="result" type="Struct"/>
	<parameter name="url" type="URL" required="true">
		<help><![CDATA[
			Address of the resource on the server which will handle
			the request. The URL must include the hostname or IP
			address.

			If you do not specify the transaction protocol (http:// or
			https://), CFML defaults to http.

			If you specify a port number in this attribute, it
			overrides any port attribute value.

			The cfhttppparam tag URL attribute appends query string
			attribute-value pairs to the URL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			Port number on the server to which to send the request.
			A port value in the url attribute overrides this value.
			(default: http 80 - https 443)
		]]></help>
		<values default="80"/>
	</parameter>
	<parameter name="method" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
			* GET Requests information from the server. Any data that
			  the server requires to identify the requested
			  information must be in the URL or in cfhttp type="URL"
			  tags.
			* POST Sends information to the server for processing.
			  Requires one or more cfhttpparam tags. Often used for
			  submitting form-like data.
			* PUT Requests the server to store the message body at the
			  specified URL. Use this method to send files to the
			  server.
			* DELETE Requests the server to delete the specified URL.
			* HEAD Identical to the GET method, but the server does
			  not send a message body in the response. Use this
			  method for testing hypertext links for validity and
			  accessibility, determining the type or modification
			  time of a document, or determining the type of server.
			* TRACE Requests that the server echo the received HTTP
			  headers back to the sender in the response body. Trace
			  requests cannot have bodies. This method enables the
			  CFML application to see what is being received
			  at the server, and use that data for testing or
			  diagnostic information.
			* OPTIONS A request for information about the
			  communication options available for the server or the
			  specified URL. This method enables the CFML
			  application to determine the options and requirements
			  associated with a URL, or the capabilities of a server,
			  without requesting any additional activity by the
			  server.
		]]></help>
		<values default="get">
			<value option="get"/>
			<value option="post"/>
			<value option="put"/>
			<value option="delete"/>
			<value option="head"/>
			<value option="trace"/>
			<value option="options"/>
		</values>
	</parameter>
	<parameter name="proxyserver" type="String" required="false">
		<help><![CDATA[
			The proxy server required to access the URL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxyport" type="Numeric" required="false">
		<help><![CDATA[
			The port to use on The proxy server.
		]]></help>
		<values default="80"/>
	</parameter>
	<parameter name="proxyuser" type="String" required="false">
		<help><![CDATA[
			The user ID to send to the proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxypassword" type="String" required="false">
		<help><![CDATA[
			The user's password on the proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			A username. May be required by server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			A password. May be required by server
		]]></help>
		<values/>
	</parameter>
	<parameter name="useragent" type="String" required="false">
		<help><![CDATA[
			Text to put in the user agent request header. Used to
			identify the request client software. Can make the
			CFML application appear to be a browser.
		]]></help>
		<values default="ColdFusion"/>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			TThe character encoding of the request, including the URL
			query string and form or file data, and the response.

			For more information on character encodings, see:
			www.w3.org/International/O-charset.html.
		]]></help>
		<values>
			<value option="utf-8"/>
			<value option="iso-8859-1"/>
			<value option="windows-1252"/>
			<value option="us-ascii"/>
			<value option="shift_jis"/>
			<value option="iso-2022-jp"/>
			<value option="euc-jp"/>
			<value option="euc-kr"/>
			<value option="big5"/>
			<value option="euc-cn"/>
			<value option="utf-16"/>
		</values>
	</parameter>
	<parameter name="resolveurl" type="boolean" required="false">
		<help><![CDATA[
			No does not resolve URLs in the response body. As a result,
				any relative URL links in the response body do not work.
			Yes resolves URLs in the response body to absolute URLs,
				including the port number, so that links in a retrieved
				page remain functional.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="throwonerror" type="boolean" required="false">
		<help><![CDATA[
			Yes if the server returns an error response code, throws
				an exception that can be caught using the cftry and
				cfcatch or CFML error pages.
			No does not throw an exception if an error response is
				returned. In this case, your application can use the
				cfhttp.StatusCode variable to determine if there was
				an error and its cause.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="redirect" type="boolean" required="false">
		<help><![CDATA[
			If the response header includes a Location field,
			determines whether to redirect execution to the URL
			specified in the field.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Value, in seconds of the maximum time the request can take.
			If the timeout passes without a response, CFML
			considers the request to have failed.
		]]></help>
		<values/>
	</parameter>
	<parameter name="getasbinary" type="String" required="false">
		<help><![CDATA[
			* No If CFML does not recognize the response body
				type as text, convert it to a CFML object.
			* Auto If CFML does not recognize the response body
				type as text, convert it to CFML Binary type data.
			* Yes Always convert the response body content into
				CFML Binary type data, even if CFML
				recognizes the response body type as text.
		]]></help>
		<values default="auto">
			<value option="auto"/>
			<value option="false"/>
			<value option="true"/>
		</values>
	</parameter>
	<parameter name="result" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Specifies the name of the variable in which you want
			the result returned.
			Default: CFHTTP
		]]></help>
		<values default="cfhttp"/>
	</parameter>

	<parameter name="name" returnVarType="query" type="String" required="false"><!-- VariableName -->
		<help><![CDATA[
			Tells ColdFusion to create a query object with the given
			name from the returned HTTP response body.
		]]></help>
		<values/>
	</parameter>
	<parameter name="columns" type="String" required="false">
		<help><![CDATA[
			The column names for the query, separated by commas, with no
			spaces. Column names must start with a letter. The remaining
			characters can be letters, numbers, or underscore
			characters (_).
			
			If there are no column name headers in the response,
			specify this attribute to identify the column names.
			
			If you specify this attribute, and the firstrowasHeader
			attribute is True (the default), the column names specified
			by this attribute replace the first line of the response.
			You can use this behavior to replace the column names
			retrieved by the request with your own names.
			
			If a duplicate column heading is encountered in either this
			attribute or in the column names from the response,
			ColdFusion appends an underscore to the name to make it
			unique.
			
			If the number of columns specified by this attribute does
			not equal the number of columns in the HTTP response body,
			ColdFusion generates an error.
		]]></help>
		<values/>
	</parameter>
	<parameter name="firstrowasheaders" type="boolean" required="false">
		<help><![CDATA[
			Determines how ColdFusion processes the first row of the
			query record set:
			* yes: processes the first row as column heads. If you
			specify a columns attribute, ColdFusion ignores the
			first row of the file.
			* no: processes the first row as data. If you do not
			specify a columns attribute, ColdFusion generates column
			names by appending numbers to the word "column"; for
			example, "column_1".
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
			A character that separates query columns. The response
			body must use this character to separate the query columns.
		]]></help>
		<values default=",">
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	
	
	
	<parameter name="textqualifier" type="String" required="false">
		<help><![CDATA[
			A character that, optionally, specifies the start and end
			of a text column. This character must surround any text
			fields in the response body that contain the delimiter
			character as part of the field value.
			
			To include this character in column text, escape it by
			using two characters in place of one. For example, if the
			qualifier is a double-quotation mark, escape it as "". 
		]]></help>
		<values default="&quot;">
			<value option="&quot;"/>
			<value option="'"/>
		</values>
	</parameter>
	
	
	<parameter name="multipart" type="boolean" required="false">
		<help><![CDATA[
		Tells ColdFusion to send all data specified by cfhttpparam type="formField" tags as multipart form data, with a Content-Type of multipart/form-data.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	
	<parameter name="path" type="String" required="false">
		<help><![CDATA[
	Tells ColdFusion to save the HTTP response body in a file. Contains the absolute path to the directory in which to store the file.
		]]></help>
		<values />

	</parameter>
	
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
	For a GET operation, the default is the file requested in the URL, if there is one. For example, if the URL in a GET method is http:www.myco.com/test.htm, the default file is test.htm.
		]]></help>
		<values />
		
	
	</parameter>
	<possiblecombinations>
                <combination switchvalue="get">
                    <required>url</required>
                    <optional>charset,columns,delimiter,file,firstrowasheaders,getasbinary,method,name,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,textqualifier,throwonerror,timeout,useragent,username</optional>
                </combination>
                <combination switchvalue="put">
                    <required>url</required>
                    <optional>charset,file,method,name,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,textqualifier,throwonerror,timeout,useragent,username</optional>
                </combination>
              
                <combination switchvalue="delete">
                    <required>url</required>
                    <optional>charset,getasbinary,file,method,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,throwonerror,timeout,useragent,username</optional>
                </combination>
                <combination switchvalue="trace">
                    <required>url</required>
                    <optional>charset,file,method,name,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,textqualifier,throwonerror,timeout,useragent,username</optional>
                </combination>
                <combination switchvalue="post">
                    <required>url</required>
                    <optional>charset,columns,delimiter,file,firstrowasheaders,getasbinary,method,multipart,name,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,textqualifier,throwonerror,timeout,useragent,username</optional>
                </combination>
                <combination switchvalue="options">
                    <required>url</required>
                    <optional>charset,getasbinary,file,method,name,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,textqualifier,throwonerror,timeout,useragent,username</optional>
                </combination>
				<combination switchvalue="head">
                    <required>url</required>
                    <optional>charset,getasbinary,columns,delimiter,file,firstrowasheaders,getasbinary,method,name,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,redirect,resolveurl,result,textqualifier,throwonerror,timeout,useragent,username</optional>
                </combination>
            </possiblecombinations>
	
</tag>
<!--
	cfhttpparam
		type = "transaction type"
		name = "data name"
		value = "data value"
		file = "filename"
		encoded = "boolean"
		mimeType = "MIME type designator"
--><tag  name="cfhttpparam" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Allowed inside cfhttp tag bodies only. Required for cfhttp POST
		operations. Optional for all others. Specifies parameters to
		build an HTTP request.
	]]></help>
	<parameter name="type" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
			Information type
			* Header: The parameter specifies an HTTP header.
				(ColdFusion does not URL encode the header)
			* Body: Specifies the body of the HTTP request.
				(ColdFusion does not URL encode the body contents)
			* XML: Identifies the request as having a content-type of
				text/xml. Specifies that the value attribute contains
				the body of the HTTP request. Used to send XML to the
				destination URL. CFML does not URL encode the XML
				data.
			* CGI: Specifies an HTTP header. CFML URL encodes
				the header by default.
			* File: Tells CFML to send the contents of the
				specified file. CFML does not URL encode the
				file contents
			* URL: Specifies a URL query string name-value pair to
				append to the cfhttp url attribute. CFML URL
				encodes the query string.
			* FormField: Specifies a form field to send. CFML
				URL encodes the Form field by default.
			* Cookie: Specifies a cookie to send as an HTTP header.
				CFML URL encodes the cookie.
		]]></help>
		<values>
			<value option="header"/>
			<value option="body"/>
			<value option="xml"/>
			<value option="cgi"/>
			<value option="file"/>
			<value option="url"/>
			<value option="formfield"/>
			<value option="cookie"/>
		</values>
	</parameter>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Variable name for data that is passed. Ignored for Body
			and XML types. For File type, specifies the filename to
			send in the request.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Value of the data that is sent. Ignored for File type. The
			value must contain string data or data that CFML can
			convert to a string for all type attributes except Body.
			Body types can have string or binary values.
		]]></help>
		<values/>
	</parameter>
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
			Applies to File type; ignored for all other types. The
			absolute path to the file that is sent in the request body.
		]]></help>
		<values/>
	</parameter>
	<parameter name="encoded" type="boolean" required="false">
		<help><![CDATA[
			Applies to FormField and CGI types; ignored for all other
			types. Specifies whether to URLEncode the form field or
			header.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="mimetype" type="String" required="false">
		<help><![CDATA[
			Applies to File type; invalid for all other types.
			Specifies the MIME media type of the file contents.
			The content type can include an identifier for the
			character encoding of the file; for example, text/html;
			charset=ISO-8859-1 indicates that the file is HTML text in
			the ISO Latin-1 character encoding.
		]]></help>
		<values>
			<value option="text/plain"/>
			<value option="text/html"/>
		</values>
	</parameter>
	 <possiblecombinations>
                <combination switchvalue="body">
                    <required>value</required>
                    <optional>name</optional>
                </combination>
                <combination switchvalue="cookie">
                    <required>name,value</required>
                    <optional></optional>
                </combination>                 
                <combination switchvalue="cgi">
                    <required>name,value</required>
                    <optional>encoded</optional>
                </combination>
                <combination switchvalue="file">
                    <required>file,name</required>
                    <optional>mimetype</optional>
                </combination>
                <combination switchvalue="header">
                    <required>name,value</required>
                    <optional></optional>
                </combination>
                <combination switchvalue="formfield">
                    <required>name,value</required>
                    <optional>encoded</optional>
                </combination>
                <combination switchvalue="url">
                    <required>name,value</required>
                    <optional></optional>
                </combination>
                <combination switchvalue="xml">
                    <required>value</required>
                    <optional></optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfif expression
	   [HTML and CFML tags]
	/cfif
--><tag  name="cfif" canHaveAttributeCollection="false" endtagrequired="true" single="false" xmlstyle="false">
	<help><![CDATA[
		Creates simple and compound conditional statements in CFML.
		Tests an expression, variable, function return value, or
		string. Used, optionally, with the cfelse and cfelseif tags.
	]]></help>
</tag>
<!--
	cfimport
		taglib = "taglib-location"
		prefix = "custom"
--><tag  name="cfimport" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		You can use the cfimport tag to import either of the following:

		* All CFML pages in a directory, as a tag custom tag
		library.
		* A Java Server Page (JSP) tag library. A JSP tag library is a
		packaged set of tag handlers that conform to the JSP 1.1 tag
		extension API.
	]]></help>
	<parameter name="taglib" type="String" required="true">
		<help><![CDATA[
			Tag library URI. The path must be relative to the web root
			(and start with /), the current page location, or a
			directory specified in the Administrator CFML
			mappings page.

			A directory in which custom CFML tags are stored. In
			this case, all the cfm pages in this directory are treated
			as custom tags in a tag library.
			A path to a JAR in a web-application; for example,
			"/WEB-INF/lib/sometags.jar"
			A path to a tag library descriptor; for example,
			"/sometags.tld"
			Note: You must put JSP custom tag libraries in the
			/WEB-IN/lib directory. This limitation does not apply to
			CFML pages.
		]]></help>
		<values/>
	</parameter>
	<parameter name="prefix" type="String" required="true">
		<help><![CDATA[
			Prefix by which to access the imported custom CFML tags JSP
			tags.

			If you import a CFML custom tag directory and specify an
			empty value, "", for this attribute, you can call the
			custom tags without using a prefix. You must specify and
			use a prefix for a JSP tag library.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="taglib">
                    <required>taglib</required>
                    <optional>prefix</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfinclude
		template = "template_name"
--><tag  name="cfinclude" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Embeds references to CFML pages in CFML. You can embed
		cfinclude tags recursively. For another way to encapsulate
		CFML, see cfmodule. (A CFML page was formerly sometimes
		called a CFML template or a template.)
	]]></help>
	<parameter name="template" type="String" required="true">
		<help><![CDATA[
			A logical path to a CFML page.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="template">
                    <required>template</required>
                    <optional/>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfindex
		collection = "collection_name"
		action = "action"
		type = "type"
		title = "title"
		key = "ID"
		body = "body"
		custom1 = "custom_value"
		custom2 = "custom_value"
		custom3 = "custom_value"
		custom4 = "custom_value"
		category = "category name"
		categoryTree = "category tree"
		URLpath = "URL"
		extensions = "file_extensions"
		query = "query_name"
		recurse = "boolean"
		language = "language"
		status = "status"
--><tag  name="cfindex" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Populates a Verity search engine collection with an index of
		documents on a file system or of CFML query result sets.

		A collection must exist before it can be populated.
	]]></help>
	<parameter name="collection" type="String" required="true">
		<help><![CDATA[
			Name of a collection that is registered by CFML; for
				example, "personnel"
			Name and absolute path of a collection that is not
			registered by CFML; for example:
			"e:\collections\personnel"
		]]></help>
		<values/>
	</parameter>
	<parameter name="action" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
			- update: updates a collection and adds key to the index.
			- delete: removes collection documents as specified by
			the key attribute.
			- purge: deletes all of the documents in a collection.
			Causes the collection to be taken offline, preventing
			searches.
			- refresh: deletes all of the documents in a collection,
			and then performs an update.
		]]></help>
		<values>
			<value option="update"/>
			<value option="delete"/>
			<value option="purge"/>
			<value option="refresh"/>
		</values>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			file: using the key attribute value of the query result as
				input, applies action value to filenames or filepaths.
			path: using the key attribute value of the query result as
				input, applies action to filenames or filepaths that
				pass the extensions filter
			custom: If action = "update" or "delete": applies action to
				custom entities in query results.
		]]></help>
		<values>
			<value option="file"/>
			<value option="path"/>
			<value option="custom"/>
		</values>
	</parameter>
	<parameter name="title" type="String" required="false">
		<help><![CDATA[
			* Title for collection
			* Query column name for type and a valid query name
			Permits searching collections by title or displaying a
			separate title from the key
		]]></help>
		<values/>
	</parameter>
	<parameter name="key" type="String" required="false">
		<help><![CDATA[
			* Absolute path and filename, if type = "file"
			* Absolute path, if type = "path"
			* A query column name (typically, the primary key column
				name), if type = "custom"
			* A query column name, if type = any other value

			This attribute is required for the actions listed, unless
			you intend for its value to be an empty string.
		]]></help>
		<values/>
	</parameter>
	<parameter name="body" type="String" required="false">
		<help><![CDATA[
			* ASCII text to index
			* Query column name(s), if name is specified in query

			You can specify columns in a delimited list. For example:
			"emp_name, dept_name, location"
		]]></help>
		<values/>
	</parameter>
	<parameter name="custom1" type="String" required="false">
		<help><![CDATA[
			Custom field in which you can store data during an indexing
			operation. Specify a query column name for type, and a
			query name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="custom2" type="String" required="false">
		<help><![CDATA[
			Custom field in which you can store data during an indexing
			operation. Specify a query column name for type, and a
			query name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="custom3" type="String" required="false">
		<help><![CDATA[
			Custom field in which you can store data during an indexing
			operation. Specify a query column name for type, and a
			query name. (Added in ColdFusion 7)
		]]></help>
		<values/>
	</parameter>
	<parameter name="custom4" type="String" required="false">
		<help><![CDATA[
			Custom field in which you can store data during an indexing
			operation. Specify a query column name for type, and a
			query name. (Added in ColdFusion 7)
		]]></help>
		<values/>
	</parameter>
	<parameter name="category" type="String" required="false">
		<help><![CDATA[
			A string value that specifies one or more search categories
			for which to index the data. You can define multiple
			categories, separated by commas, for a single index.
		]]></help>
		<values/>
	</parameter>
	<parameter name="categoryTree" type="String" required="false">
		<help><![CDATA[
			A string value that specifies a hierarchical category or
			category tree for searching. It is a series of categories
			separated by forward slashes ("/"). You can specify only
			one category tree.
		]]></help>
		<values/>
	</parameter>
	<parameter name="urlpath" type="URL" required="false">
		<help><![CDATA[
			If type="file" or "path", specifies the URL path. When the
			collection is searched with cfsearch, this pathname is
			prefixed to filenames and returned as the url attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="extensions" type="String" required="false">
		<help><![CDATA[
			Delimited list of file extensions that CFML uses to
			index files, if type = "Path".
			"*." returns files with no extension.

			For example: the following code returns files with a
			listed extension or no extension:
			extensions = ".htm, .html, .cfm, .cfml, "*."
		]]></help>
		<values/>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			Query against which collection is generated
		]]></help>
		<values/>
	</parameter>
	<parameter name="recurse" type="boolean" required="false">
		<help><![CDATA[
			Yes: if type = "path", directories below the path
				specified in key are included in indexing operation
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="language" type="String" required="false">
		<help><![CDATA[
			For options, see cfcollection. Requires the appropriate
			Verity Locales language pack (Western Europe, Asia,
			Multilanguage, Eastern Europe/Middle Eastern).
		]]></help>
		<values default="english"/>
	</parameter>
	<parameter name="status" type="String" required="false">
		<help><![CDATA[
			The name of the structure into which ColdFusion MX
			returns status information.
		]]></help>
		<values/>
	</parameter>
	 <possiblecombinations>
                <combination switchvalue="purge">
                    <required>collection</required>
                    <optional>status</optional>
                </combination>
                <combination switchvalue="update">
                    <required>collection,key</required>
                    <optional>body,category,categorytree,custom1,custom2,custom3,custom4,extensions,language,query,recurse,status,title,type,urlpath</optional>
                </combination>                
                <combination switchvalue="delete">
                    <required>collection,key</required>
                    <optional>query,status,type</optional>
                </combination>
                <combination switchvalue="refresh">
                    <required>collection,key</required>
                    <optional>body,category,categorytree,custom1,custom2,custom3,custom4,extensions,language,query,recurse,status,title,type,urlpath</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfinput
		name = "name"
		type = "input type"
		label = "text"
		style = "style specification"
		required = "boolean"
		mask = "masking pattern"
		validate = "data type"
		validateAt= one or more of "onBlur", "onServer", "onSubmit"
		message = "text"
		range = "min_value, max_value"
		maxlength = "number"
		pattern = "regexp"
		onValidate = "script name"
		onError = "script name"
		size = "integer"
		value = "initial value"
		bind = "bind expression"
		checked
		disabled = "true" or "false" or "no attribute value"
		src = "image URL"
		onKeyUp = "JavaScript or ActionScript"
		onKeyDown = "JavaScript or ActionScript"
		onMouseUp = "JavaScript or ActionScript"
		onMouseDown = "JavaScript or ActionScript"
		onChange = "JavaScript or ActionScript"
		onClick = "JavaScript or ActionScript"
		firstDayOfWeek = "day name"
		dayNames = "days-of-the-week labels"
		monthNames = "month labels"
		enabled = "boolean"
		visible = "boolean"
		toolTip = "Tip text"
		height = "number of pixels"
		width = "number of pixels"
--><tag  name="cfinput" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Used within the cfform tag, to place radio buttons, check boxes,
		or text boxes on a form. Provides input validation for the
		specified control type.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name for form input element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="id" type="String" required="false">
		<help><![CDATA[
			ID for form input element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			The input control type to create:
			- button: push button.
			- checkbox: check box.
			- file: file selector; not supported in Flash.
			- hidden: invisible control.
			- image: clickable button with an image.
			- password: password entry control; hides input values.
			- radio: radio button.
			- reset: form reset button.
			- submit: form submission button.
			- text: text entry box.
			- datefield: Flash only; date entry field with an
			  expanding calendar for selecting dates.
		]]></help>
		<values default="text">
			<value option="button"/>
			<value option="checkbox"/>
			<value option="file"/>
			<value option="hidden"/>
			<value option="image"/>
			<value option="password"/>
			<value option="radio"/>
			<value option="reset"/>
			<value option="submit"/>
			<value option="text"/>
			<value option="datefield"/>
		</values>
	</parameter>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			Label to put next to the control on a Flash or XML form.
			Not used for button, hidden, image, reset, or submit types.
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			In HTML or XML format, ColdFusion passes the style attribute
			to the browser or XML.
			In Flash format, must be a style specification in CSS format.
		]]></help>
		<values/>
	</parameter>
	<parameter name="class" type="String" required="false">
		<help><![CDATA[
			Stylesheet class for form input element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
			A mask pattern that controls the character pattern that
			users can enter, or that the form sends to ColdFusion.
			In HTML and Flash for type=text use:
			 - A = [A-Za-z]
			 - X = [A-Za-z0-9]
			 - 9 = [0-9]
			 - ? = Any character
			 - all other = the literal character
			In Flash for type=datefield use:
			 - D = day; can use 0-2 mask characters.
			 - M = month; can use 0-4 mask characters.
			 - Y = year; can use 0, 2, or 4 characters.
			 - E = day in week; can use 0-4 characters.
		]]></help>
		<values/>
	</parameter>
	<parameter name="validate" type="String" required="false">
		<help><![CDATA[
			date: verifies format mm/dd/yy.
			eurodate: verifies date format dd/mm/yyyy.
			time: verifies time format hh:mm:ss.
			float: verifies floating point format.
			integer: verifies integer format.
			telephone: verifies telephone format ###-###-####. The
				separator can be a blank. Area code and exchange must
				begin with digit 1 - 9.
			zipcode: verifies, in U.S. formats only, 5- or 9-digit
				format #####-####. The separator can be a blank.
			creditcard: strips blanks and dashes; verifies number using
				mod10 algorithm. Number must have 13-16 digits.
			social_security_number: verifies format ###-##-####. The
				separator can be a blank.
			regular_expression: matches input against pattern
				attribute.
		]]></help>
		<values>
			<value option="date"/>
			<value option="eurodate"/>
			<value option="time"/>
			<value option="float"/>
			<value option="integer"/>
			<value option="telephone"/>
			<value option="zipcode"/>
			<value option="creditcard"/>
			<value option="social_security_number"/>
			<value option="regular_expression"/>
		</values>
	</parameter>
	<parameter name="validateat" type="String" required="false">
		<help><![CDATA[
			How to do the validation; one or more of the following:
			onSubmit, onServer or onBlur.
			onBlur and onSubmit are identical in Flash forms. For
			multiple values, use a comma-delimited list.
			Default: onSubmit
		]]></help>
		<values default="onSubmit">
			<value option="onSubmit"/>
			<value option="onServer"/>
			<value option="onBlur"/>
		</values>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message text to display if validation fails
		]]></help>
		<values/>
	</parameter>
	<parameter name="range" type="String" required="false">
		<help><![CDATA[
			Minimum and maximum value range, separated by a comma. If
			type = "text" or "password", this applies only to numeric
			data.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxlength" type="Numeric" required="false">
		<help><![CDATA[
			Maximum length of text entered, if type=text or password.
		]]></help>
		<values/>
	</parameter>
	<parameter name="pattern" type="Regex" required="false">
		<help><![CDATA[
			JavaScript regular expression pattern to validate input.
			ColdFusion uses this attribute only if you specify regex
			in the validate attribute. Omit leading and trailing slashes.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onvalidate" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to validate user input. The form
			 object, input object, and input object values are passed
			 to the routine, which should return True if validation
			 succeeds, and False otherwise. If used, the validate
			 attribute is ignored.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to execute if validation fails.
		]]></help>
		<values/>
	</parameter>
	<parameter name="size" type="Numeric" required="false">
		<help><![CDATA[
			Size of input control. Ignored, if type=radio or checkbox.
			If specified in a Flash form, ColdFusion sets the control
			width pixel value to 10 times the specified size and
			ignores the width attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			HTML: corresponds to the HTML value attribute. Its use
			depends on control type.
			Flash: optional; specifies text for button type inputs:
			button, submit, and image.
		]]></help>
		<values/>
	</parameter>
	<parameter name="bind" type="String" required="false">
		<help><![CDATA[
			A Flash bind expression that populates the field with
			information from other form fields.
		]]></help>
		<values/>
	</parameter>
	<parameter name="checked" type="boolean" required="false">
		<help><![CDATA[
			Selects a control. No value is required. Applies if
			type=radio or checkbox.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="disabled" type="boolean" required="false">
		<help><![CDATA[
			Disables user input, making the control read-only. To
			disable input, specify disabled without an attribute or
			disabled="true". To enable input, omit the attribute
			or specify disabled="false".
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="src" type="String" required="false">
		<help><![CDATA[
			Applies to Flash button, reset, submit, and image types,
			and the HTML image type. URL of an image to use on
			the button. Flash does not support GIF images.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onkeyup" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user releases a keyboard key in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onkeydown" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash)
			ActionScript to run when the user presses a keyboard
			key in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onmouseup" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user presses a mouse button in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onmousedown" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user releases a mouse button in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the control changes due to user action. In Flash,
			applies to datefield, password, and text types only.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onclick" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user clicks the control. In Flash, applies to
			button, checkbox, image, radio, reset, and submit types
			only.
		]]></help>
		<values/>
	</parameter>
	<parameter name="daynames" type="String" required="false">
		<help><![CDATA[
			A comma-delimited list that sets the names of the
			weekdays displayed in the calendar. Sunday is the
			first day and the rest of the weekday names follow in
			the normal order.
			Default is: S,M,T,W,Th,F,S
		]]></help>
		<values default="S,M,T,W,Th,F,S">
			<value option="S,M,T,W,Th,F,S"/>
			<value option="Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday"/>
			<value option="Sun,Mon,Tue,Wed,Thu,Fri,Sat"/>
		</values>
	</parameter>
	<parameter name="firstdayofweek" type="Numeric" required="false">
		<help><![CDATA[
			Integer in the range 0-6 specifying the first day of the
			week in the calendar, 0 indicates Sunday, 6 indicates Saturday.
			Default is: 0
		]]></help>
		<values default="0">
			<value option="0"/>
			<value option="1"/>
			<value option="2"/>
			<value option="3"/>
			<value option="4"/>
			<value option="5"/>
			<value option="6"/>
		</values>
	</parameter>
	<parameter name="monthnames" type="String" required="false">
		<help><![CDATA[
			A comma-delimited list of the month names that are
			displayed at the top of the calendar.
		]]></help>
		<values default="January,February,March,April,May,June,July,August,September,October,November,December">
			<value option="January,February,March,April,May,June,July,August,September,October,November,December"/>
			<value option="Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec"/>
		</values>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether the control is
			enabled. A disabled control appears in light gray. The
			inverse of the disabled attribute. Flash only.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether to show the
			control. Space that would be occupied by an invisible
			control is blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Flash only: Text to display when the mouse pointer hovers
			over the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Applies to most Flash types, HTML image type on
			some browsers. The width of the control, in pixels. For
			Flash forms, ColdFusion ignores this attribute if you also
			specify a size attribute value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Applies to most Flash types, HTML image type on
			some browsers. The height of the control, in pixels. The
			displayed height might be less than the specified size.
		]]></help>
		<values/>
	</parameter>
	<parameter name="passthrough" type="String" required="false" compatibility="deprecated">
		<help><![CDATA[
			This attribute is deprecated.
			
			Passes arbitrary attribute-value pairs to the HTML code
			that is generated for the tag. You can use either of the
			following formats:
			
			passthrough="title=""myTitle"""
			passthrough='title="mytitle"'
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>bind,class,id,mask,maxlength,message,onblur,onerror,onvalidate,passthrough,pattern,range,required,tooltip,type,typeahead,validate,value</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfinsert
		dataSource = "ds_name"
		tableName = "tbl_name"
		tableOwner = "owner"
		tableQualifier = "tbl_qualifier"
		username = "username"
		password = "password"
		formFields = "formfield1, formfield2, ..."
--><tag  name="cfinsert" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Inserts records in data sources from data in a CFML form
		or form Scope.
	]]></help>
	<parameter name="datasource" type="String" required="true">
		<help><![CDATA[
			Data source; contains table.
		]]></help>
		<values/>
	</parameter>
	<parameter name="tablename" type="String" required="true">
		<help><![CDATA[
			Table in which to insert form fields.

			ORACLE drivers: must be uppercase.
			Sybase driver: case-sensitive. Must be the same case used
				when table was created
		]]></help>
		<values/>
	</parameter>
	<parameter name="tableowner" type="String" required="false">
		<help><![CDATA[
			For data sources that support table ownership (such as SQL
			Server, Oracle, and Sybase SQL Anywhere), use this field to
			specify the owner of the table.
		]]></help>
		<values/>
	</parameter>
	<parameter name="tablequalifier" type="String" required="false">
		<help><![CDATA[
			For data sources that support table qualifiers, use this
			field to specify qualifier for table. The purpose of table
			qualifiers varies among drivers. For SQL Server and
			Oracle, qualifier refers to name of database that contains
			table. For Intersolv dBASE driver, qualifier refers to
			directory where DBF files are located.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username specified in ODBC setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password specified in ODBC setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="formfields" type="String" required="false">
		<help><![CDATA[
			Comma-delimited list of form fields to insert. If not
			specified, all fields in the form are included.

			If a form field is not matched by a column name in the
			database, CFML throws an error.

			The database table key field must be present in the form.
			It may be hidden.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="tablename">
                    <required>tablename</required>
                    <optional>datasource,formfields,password,tableowner,tablequalifier,username</optional>
                </combination>
                <combination attributename="tablename">
                    <required>datasource,tablename</required>
                    <optional>formfields,password,tableowner,tablequalifier,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfinvoke
		component = "component name or reference"
		method = "method name"
		returnVariable = "variable name"
		argumentCollection = "argument collection"
	OR
	cfinvoke
		method = "method name"
		returnVariable = "variable name"
		argumentCollection = "argument collection"
	OR
	cfinvoke
		webservice = "URLtoWSDL_location"
		method = "operation_name"
		username = user name"
		password = "password"
		timeout = "request timeout in seconds"
		proxyServer = "WSDL proxy server URL
		proxyPort = "port on proxy server"
		proxyUser = "user id for proxy server"
		proxyPassword = "password for proxy server"
		servicePort = "WSDL port name"
		inputParam1 = "value1"
		inputParam2 = "value2"
		...
		returnVariable = "var_name"
	OR
	cfinvoke
		component = "#mystringname for instantiated component#"
		method = "method name"
		returnVariable = "variable name"
		argumentCollection = "argument collection"
	OR
	cfinvoke
		webservice = "#my stringname for instantiated web service#"
		timeout = "request timeout in seconds"
		proxyServer = "WSDL proxy server url
		proxyPort = "numeric port on proxy server"
		proxyUser = "string user id for proxy server"
		proxyPassword = "string user password for proxy server"
	=============================================================
	cfinvoke
		webservice = "URLtoWSDL_location"
		method = "operation_name"
		username = user name"
		password = "password"
		timeout = "request timeout in seconds"
		proxyServer = "WSDL proxy server URL
		proxyPort = "port on proxy server"
		proxyUser = "user id for proxy server"
		proxyPassword = "password for proxy server"
		returnVariable = "var_name"
		component = "component name or reference"
		argumentCollection = "argument collection"
--><tag  name="cfinvoke" canHaveAttributeCollection="false" endtagrequired="false"  single="false" xmlstyle="false" hybrid="true" allowanyattribute="true">
	<help><![CDATA[
		Does either of the following:

		* Invokes a component method from within a CFML page or
			component.
		* Invokes a web service.
		Different attribute combonations make some attributes required
		at sometimes and not at others.
	]]></help>
	<return type="variablename" parameter="returnVariable"/>
	<parameter name="component" type="String" required="false">
		<help><![CDATA[
			String or component object; a reference to a component, or
			component to instantiate.
		]]></help>
		<values/>
	</parameter>
	<parameter name="method" type="String" required="true">
		<help><![CDATA[
			Name of a method. For a web service, the name of an
			operation.
		]]></help>
		<values/>
	</parameter>
	<parameter name="returnvariable" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Name of a variable for the invocation result.
		]]></help>
		<values/>
	</parameter>
	<parameter name="argumentcollection" type="String" required="false">
		<help><![CDATA[
			Name of a structure; associative array of arguments to pass
			to the method.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username specified in Administrator > Web Services
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides passowrd specified in Administrator > Web Services
		]]></help>
		<values/>
	</parameter>
	<parameter name="webservice" type="URL" required="false">
		<help><![CDATA[
			The URL of the WSDL file for the web service.
		]]></help>
		<values/>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			The timeout for the web service request, in seconds
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxyserver" type="String" required="false">
		<help><![CDATA[
			The proxy server required to access the webservice URL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxyport" type="Numeric" required="false">
		<help><![CDATA[
			The port to use on The proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxyuser" type="String" required="false">
		<help><![CDATA[
			The user ID to send to the proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxypassword" type="String" required="false">
		<help><![CDATA[
			The user's password on the proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="serviceport" type="String" required="false">
		<help><![CDATA[
			The port name for the web service. This value is
			case-sensitive and corresponds to the port element's
			name attribute under the service element. Specify this
			attribute if the web service contains multiple ports.
			Default: first port found in the WSDL.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfinvokeargument
		name="argument name"
		value="argument value"
		omit = "boolean"
--><tag  name="cfinvokeargument" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Passes the name and value of a parameter to a component method
		or a web service. This tag is used within the cfinvoke tag.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Argument name
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			Argument value
		]]></help>
		<values/>
	</parameter>
	<parameter name="omit" type="boolean" required="false">
		<help><![CDATA[
			Enables you to omit a parameter when invoking a web service.
			It is an error to specify omit="true" if the cfinvoke
			webservice attribute is not specified.
			 - true: omit this parameter when invoking a web service.
			 - false: do not omit this parameter when invoking a web service.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</tag>
<!--
	cfldap
		server = "server_name"
		port = "port_number"
	   username = "name"
	   password = "password"
	   action = "action"
	   name = "name"
	   timeout = "seconds"
	   maxRows = "number"
	   start = "distinguished_name"
	   scope = "scope"
	   attributes = "attribute, attribute"
		returnAsBinary = "column_name, column_name"
	   filter = "filter"
	   sort = "attribute[, attribute]..."
	   sortControl = "nocase" and/or "desc" or "asc"
	   dn = "distinguished_name"
	   startRow = "row_number"
	   modifyType = "replace" or "add" or "delete"
	   rebind = "boolean"
	   referral = "number_of_allowed_hops"
	   secure = "multi_field_security_string"
	   separator = "separator_character"
	   delimiter = "delimiter_character"
--><tag  name="cfldap" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Provides an interface to a Lightweight Directory Access Protocol
		(LDAP) directory server, such as the Netscape Directory Server.
	]]></help>
	<parameter name="server" type="String" required="true">
		<help><![CDATA[
			Host name or IP address of LDAP server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			Port of the LDAP server (default 389).
		]]></help>
		<values default="389"/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			The User ID. Required if secure = "CFSSL_BASIC"
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Password that corresponds to user name.
			If secure = "CFSSL_BASIC", V2 encrypts the password before
			transmission.
		]]></help>
		<values/>
	</parameter>
	<parameter name="action" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
			* query: returns LDAP entry information only. Requires name,
				start, and attributes attributes.
			* add: adds LDAP entries to LDAP server. Requires attributes
				attribute.
			* modify: modifies LDAP entries, except distinguished name dn
				attribute, on LDAP server. Requires dn. See modifyType attribute.
			* modifyDN: modifies distinguished name attribute for LDAP
				entries on LDAP server. Requires dn.
			* delete: deletes LDAP entries on an LDAP server. Requires dn.
		]]></help>
		<values default="query">
			<value option="query"/>
			<value option="add"/>
			<value option="modify"/>
			<value option="modifyDN"/>
			<value option="delete"/>
		</values>
	</parameter>
	<parameter name="name" returnVarType="query" type="String" required="false">
		<help><![CDATA[
			Required if action = "Query"
			Name of LDAP query. The tag validates the value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Maximum length of time, in seconds, to wait for LDAP processing.
			Default 60000
		]]></help>
		<values default="60000"/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of entries for LDAP queries.
		]]></help>
		<values/>
	</parameter>
	<parameter name="start" type="Numeric" required="false">
		<help><![CDATA[
			Required if action = "Query"
			Distinguished name of entry to be used to start a search.
		]]></help>
		<values/>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			Scope of search, from entry specified in start attribute for
			action = "Query".
			* oneLevel: entries one level below entry.
			* base: only the entry.
			* subtree: entry and all levels below it.
		]]></help>
		<values default="onelevel">
			<value option="onelevel"/>
			<value option="base"/>
			<value option="subtree"/>
		</values>
	</parameter>
	<parameter name="attributes" type="String" required="false">
		<help><![CDATA[
			Required if action = "Query", "Add", "ModifyDN", or "Modify"
			For queries: comma-delimited list of attributes to return. For
			queries, to get all attributes, specify "*".
			
			If action = "add" or "modify", you can specify a list of update
			columns. Separate attributes with a semicolon.
			
			If action = "ModifyDN", CFML passes attributes to the
			LDAP server without syntax checking.
		]]></help>
		<values/>
	</parameter>
	<parameter name="returnasbinary" type="String" required="false">
		<help><![CDATA[
			A comma-delimited list of columns that are to
			be returned as binary values.
		]]></help>
		<values/>
	</parameter>
	<parameter name="filter" type="String" required="false">
		<help><![CDATA[
			Search criteria for action = "Query".
			List attributes in the form:
			"(attribute operator value)" Example: "(sn = Smith)"
		]]></help>
		<values/>
	</parameter>
	<parameter name="sort" type="String" required="false">
		<help><![CDATA[
			Attribute(s) by which to sort query results. Use a comma
			delimiter.
		]]></help>
		<values/>
	</parameter>
	<parameter name="sortcontrol" type="String" required="false">
		<help><![CDATA[
			Default asc
			* nocase: case-insensitive sort
			* asc: ascending (a to z) case-sensitive sort
			* desc: descending (z to a) case-sensitive sort

			You can enter a combination of sort types; for example,
			sortControl = "nocase, asc".
		]]></help>
		<values default="asc">
			<value option="nocase"/>
			<value option="asc"/>
			<value option="desc"/>
			<value option="nocase, desc"/>
			<value option="nocase, asc"/>
		</values>
	</parameter>
	<parameter name="dn" type="String" required="false">
		<help><![CDATA[
			Distinguished name, for update action. Example:
			"cn = Bob Jensen, o = Ace Industry, c = US"
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="add"/>
			<selectedValue attributeName="action" required="true" value="modify"/>
			<selectedValue attributeName="action" required="true" value="modifyDN"/>
			<selectedValue attributeName="action" required="true" value="delete"/>
		</triggers>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			Used with action = "query". First row of LDAP query to insert
			into a CFML query.
		]]></help>
		<values/>
	</parameter>
	<parameter name="modifytype" type="String" required="false">
		<help><![CDATA[
			Default replace

			How to process an attribute in a multi-value list.
			* add: appends it to any attributes
			* delete: deletes it from the set of attributes
			* replace: replaces it with specified attributes

			You cannot add an attribute that is already present or that is
			empty.
		]]></help>
		<values default="replace">
			<value option="add"/>
			<value option="delete"/>
			<value option="replace"/>
		</values>
	</parameter>
	<parameter name="rebind" type="boolean" required="false">
		<help><![CDATA[
			* Yes: attempt to rebind referral callback and reissue query by
				referred address using original credentials.
			* No: referred connections are anonymous
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="referral" type="Numeric" required="false">
		<help><![CDATA[
			Number of hops allowed in a referral. A value of 0 disables
			referred addresses for LDAP; no data is returned.
		]]></help>
		<values/>
	</parameter>
	<parameter name="secure" type="String" required="false">
		<help><![CDATA[
			Security to employ, and required information. One option:
			* CFSSL_BASIC

			"CFSSL_BASIC" provides V2 SSL encryption
			and server authentication.
		]]></help>
		<values>
			<value option="CFSSL_BASIC"/>
		</values>
	</parameter>
	<parameter name="separator" type="String" required="false">
		<help><![CDATA[
			Default , (a comma)
			Delimiter to separate attribute values of multi-value
			attributes. Used by query, add, and modify actions, and by
			cfldap to output multi-value attributes.

			For example, if $ (dollar sign), the attributes attribute could
			be "objectclass = top$person", where the first value of
			objectclass is top, and the second value is person. This avoids
			confusion if values include commas.
		]]></help>
		<values default=",">
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
			Separator between attribute name-value pairs. Use this
			attribute if:

			* the attributes attribute specifies more than one item, or
			* an attribute contains the default delimiter (semicolon). For
				example: mgrpmsgrejecttext;lang-en

			Used by query, add, and modify actions, and by cfldap to output
			multi-value attributes.

			For example, if $ (dollar sign), you could specify
			"cn = Double Tree Inn$street = 1111 Elm; Suite 100 where the
			semicolon is part of the street value.
		]]></help>
		<values default=";">
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination switchvalue="modify">
                    <required>attributes,dn</required>
                    <optional>delimiter,modifytype,password,port,rebind,referral,secure,separator,server,timeout,username</optional>
                </combination>
                <combination switchvalue="add">
                    <required>attributes,dn</required>
                    <optional>delimiter,password,port,rebind,referral,secure,separator,server,timeout,username</optional>
                </combination>
                <combination switchvalue="query">
                    <required>attributes,name,start</required>
                    <optional>delimiter,filter,maxrows,password,port,rebind,referral,returnasbinary,scope,secure,separator,server,sort,sortcontrol,startrow,timeout,username</optional>
                </combination>
                <combination switchvalue="delete">
                    <required>dn</required>
                    <optional>attributes,delimiter,password,port,rebind,referral,secure,server,timeout,username</optional>
                </combination>
                <combination switchvalue="modifydn">
                    <required>attributes,dn</required>
                    <optional>delimiter,password,port,rebind,referral,secure,server,timeout,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cflocation
		url = "URL"
		addToken = "boolean"
--><tag  name="cflocation" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Stops execution of the current page and opens a CFML page or HTML file.
	]]></help>
	<parameter name="url" type="String" required="true">
		<help><![CDATA[
			URL of HTML file or CFML page to open.
		]]></help>
	</parameter>
	<parameter name="addtoken" type="boolean" required="false">
		<help><![CDATA[
			clientManagement must be enabled (see cfapplication).
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="url">
                    <required>url</required>
                    <optional>addtoken</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cflock
		timeout = "timeout in seconds "
		scope = "Application" or "Server" or "Session"
		name = "lockname"
		throwOnTimeout = "boolean"
		type = "readOnly" or "exclusive "
		[...CFML to be synchronized...]
	/cflock
--><tag  name="cflock" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Ensures the integrity of shared data. Instantiates the
		following kinds of locks:

		* Exclusive allows single-thread access to the CFML constructs
		* Read-only allows multiple requests to access CFML constructs
	]]></help>
	<parameter name="timeout" type="Numeric" required="true">
		<help><![CDATA[
			Maximum length of time, in seconds, to wait to obtain a
			lock. If lock is obtained, tag execution continues.
			Otherwise, behavior depends on throwOnTimeout attribute
			value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			Lock scope. Mutually exclusive with the name attribute.
			Lock name. Only one request in the specified scope can
			execute the code within this tag (or within any other
			cflock tag with the same lock scope scope) at a time.
		]]></help>
		<values>
			<value option="Application"/>
			<value option="Server"/>
			<value option="Session"/>
		</values>
	</parameter>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Lock name. Mutually exclusive with the scope attribute.
			Only one request can execute the code within a cflock tag
			with a given name at a time. Cannot be an empty string.
		]]></help>
		<values/>
	</parameter>
	<parameter name="throwontimeout" type="boolean" required="false">
		<help><![CDATA[
			How timeout conditions are handled.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			readOnly: lets more than one request read shared data.
			exclusive: lets one request read or write shared data.
		]]></help>
		<values default="exclusive">
			<value option="readonly"/>
			<value option="exclusive"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="timeout">
                    <required>timeout</required>
                    <optional>count,name,throwontimeout,type</optional>
                </combination>
                <combination attributename="timeout">
                    <required>scope,timeout</required>
                    <optional>throwontimeout,type</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cflog
		text = "text"
		log = "log type"
		file = "filename"
		type = "message type"
		application = "application name yes or no"
--><tag  name="cflog" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Writes a message to a log file.
	]]></help>
	<parameter name="text" type="String" required="true">
		<help><![CDATA[
			Message text to log.
		]]></help>
		<values/>
	</parameter>
	<parameter name="log" type="String" required="false">
		<help><![CDATA[
			If you omit the file attribute, writes messages to standard
			log file. Ignored, if you specify file attribute.

			Application: writes to Application.log, normally used for
				application-specific messages.
			Scheduler: writes to Scheduler.log, normally used to log
				the execution of scheduled tasks.
		]]></help>
		<values>
			<value option="Application"/>
			<value option="Scheduler"/>
		</values>
	</parameter>
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
			Message file. Specify only the main part of the filename.
			For example, to log to the Testing.log file, specify
			"Testing".

			The file must be located in the default log directory. You
			cannot specify a directory path. If the file does not
			exist, it is created automatically, with the suffix .log.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			Type (severity) of the message
		]]></help>
		<values>
			<value option="information"/>
			<value option="warning"/>
			<value option="error"/>
			<value option="fatal"/>
		</values>
	</parameter>
	<parameter name="application" type="boolean" required="false">
		<help><![CDATA[
			log application name, if it is specified in a cfapplication
			tag.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cflogin
		idletimeout = "value"
		applicationToken = "token"
		cookieDomain = "domain"
		...
	/cflogin
--><tag  name="cflogin" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		A container for user login and authentication code. CFML
		runs the code in this tag if a user is not already logged in.
		You put code in the tag that authenticates the user and
		identifies the user with a set of roles. Used with cfloginuser
		tag.
	]]></help>
	<parameter name="idletimeout" type="Numeric" required="false">
		<help><![CDATA[
			Time interval with no keyboard activity after which
			CFML logs the user off. Seconds.
		]]></help>
		<values/>
	</parameter>
	<parameter name="applicationtoken" type="String" required="false">
		<help><![CDATA[
			Unique application identifier. Limits the login validity to
			one application, as specified by the cfapplication tag.
		]]></help>
		<values/>
	</parameter>
	<parameter name="cookiedomain" type="String" required="false">
		<help><![CDATA[
			Domain of the cookie that is used to mark a user as logged
			in. Use this attribute to enable a user login cookie to
			work with multiple clustered servers in the same domain.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfloginuser
		name = "name"
		password = "password-string"
		roles = "roles"
--><tag  name="cfloginuser" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Identifies an authenticated user to CFML. Specifies the
		user ID and roles. Used within a cflogin tag.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			A username.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="true">
		<help><![CDATA[
			A user password.
		]]></help>
		<values/>
	</parameter>
	<parameter name="roles" type="String" required="true">
		<help><![CDATA[
			A comma-delimited list of role identifiers.

			CFML processes spaces in a list element as part of
			the element.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cflogout
--><tag  name="cflogout" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Logs the current user out. Removes knowledge of the user ID,
		password, and roles from the server. If you do not use this
		tag, the user is automatically logged out when the session
		ends.
	]]></help>
</tag>
<!--
	cfloop
		index = "parameter_name"
		from = "beginning_value"
		to = "ending_value"
		step = "increment"
		... HTML or CFML code ...
	/cfloop

	cfloop
		condition = "expression"
		...
	/cfloop

	cfloop
		query = "query_name"
		startRow = "row_num"
		endRow = "row_num"
		...
	/cfloop

	cfloop
		index = "index_name"
		list = "list_items"
		delimiters = "item_delimiter"
		...
	/cfloop
	===============================================
	cfloop
		index = "parameter_name"
		from = "beginning_value"
		to = "ending_value"
		step = "increment"
		condition = "expression"
		query = "query_name"
		startRow = "row_num"
		endRow = "row_num"
		list = "list_items"
		delimiters = "item_delimiter"
		collection = "Object"
		item = "String"
		... HTML or CFML code ...
	/cfloop
--><tag  name="cfloop" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Different items are required based on loop type. Items listed
		as required may not be depending on your loop type.
		Loop forms:
		[query] [condition] [index + from + to ] [index + list]
		[collection + item ]
	]]></help>
	<parameter name="index" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Index value. CFML sets it to from value and
			increments or decrements by step value, until it equals to
			value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="to" type="Numeric" required="false">
		<help><![CDATA[
			Beginning value of index.
		]]></help>
		<values/>
	</parameter>
	<parameter name="from" type="Numeric" required="false">
		<help><![CDATA[
			Ending value of index.
		]]></help>
		<values/>
	</parameter>
	<parameter name="step" type="Numeric" required="false">
		<help><![CDATA[
			Ending value of index.
		]]></help>
		<values/>
	</parameter>
	<parameter name="condition" type="boolean" required="false">
		<help><![CDATA[
			Condition that controls the loop.
		]]></help>
		<values/>
	</parameter>
	<parameter name="query" type="query" required="false">
		<help><![CDATA[
			Query that controls the loop.
		]]></help>
		<values/>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			First row of query that is included in the loop.
		]]></help>
		<values/>
	</parameter>
	<parameter name="endrow" type="Numeric" required="false">
		<help><![CDATA[
			Last row of query that is included in the loop.
		]]></help>
		<values/>
	</parameter>
	<parameter name="list" type="String" required="false">
		<help><![CDATA[
			A list, variable, or filename; contains a list
		]]></help>
		<values/>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
			Character(s) that separates items in list
		]]></help>
		<values default=",">
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<parameter name="collection" type="Object" required="false">
		<help><![CDATA[
			The collection attribute is used with the item attribute.
			often to loop over a structure
		]]></help>
		<values/>
	</parameter>
	<parameter name="item" type="String" required="false">
		<help><![CDATA[
			The item attribute is used with the collection attribute.
			often to loop over a structure
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfmail
		to = "recipient"
		from = "sender"
		cc = "copy_to"
		bcc = "blind_copy_to"
		subject = "msg_subject"
		replyto = "reply_to_addr"
	 	failto = "fail_message_addr"
	 	username = "user name"
	 	password = "password"
	 	wraptext = "column number"
	 	charset = "character encoding"
	 	type = "msg_type"
	 	mimeattach = "path"
	 	query = "query_name"
	 	group = "query_column"
	 	groupcasesensitive = "boolean"
	 	startrow = "query_row"
	 	maxrows = "max_msgs"
	 	server = "serverspecs"
	 	port = "port_id"
	 	mailerid = "headerid"
	 	timeout = "seconds"
	 	spoolenable = "boolean"

	[(Optional) Mail message body and/or cfhttpparam tags]
	/cfmail
--><tag  name="cfmail" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Sends an e-mail message that optionally contains query output,
		using an SMTP server.
	]]></help>
	<parameter name="to" type="String" required="true">
		<help><![CDATA[
			Message recipient e-mail addresses.
		]]></help>
		<values/>
	</parameter>
	<parameter name="from" type="String" required="true">
		<help><![CDATA[
			E-mail message sender:
		]]></help>
		<values/>
	</parameter>
	<parameter name="cc" type="String" required="false">
		<help><![CDATA[
			Address(es) to which to copy the message
		]]></help>
		<values/>
	</parameter>
	<parameter name="bcc" type="String" required="false">
		<help><![CDATA[
			Address(es) to which to copy the message, without listing
			them in the message header.
		]]></help>
		<values/>
	</parameter>
	<parameter name="subject" type="String" required="true">
		<help><![CDATA[
			Message subject. Can be dynamically generated.
		]]></help>
		<values/>
	</parameter>
	<parameter name="replyto" type="String" required="false">
		<help><![CDATA[
			Address(es) to which the recipient is directed to send
			replies.
		]]></help>
		<values/>
	</parameter>
	<parameter name="failto" type="String" required="false">
		<help><![CDATA[
			Address to which mailing systems should send delivery
			failure notifications. Sets the mail envelope reverse-path
			value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			A user name to send to SMTP servers that require
			authentication. Requires a password attribute
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			A password to send to SMTP servers that require
			authentication. Requires a username attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="wraptext" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the maximum line length, in characters of the
			mail text. If a line has more than the specified number of
			characters, replaces the last white space character, such
			as a tab or space, preceding the specified position with
			a line break. If there are no white space characters,
			inserts a line break at the specified position. A common
			value for this attribute is 72.
		]]></help>
		<values/>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			The character encoding in which the part text is encoded.

			For more information on character encodings, see:
			www.w3.org/International/O-charset.html.
		]]></help>
		<values>
			<value option="utf-8"/>
			<value option="iso-8859-1"/>
			<value option="windows-1252"/>
			<value option="us-ascii"/>
			<value option="shift_jis"/>
			<value option="iso-2022-jp"/>
			<value option="euc-jp"/>
			<value option="euc-kr"/>
			<value option="big5"/>
			<value option="euc-cn"/>
			<value option="utf-16"/>
		</values>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			The MIME media type of the part. Can be a can be valid MIME
			media type
		]]></help>
		<values default="text/plain">
			<value option="plain"/>
			<value option="html"/>
			<value option="text"/>
			<value option="text/html"/>
			<value option="text/plain"/>
		</values>
	</parameter>
	<parameter name="mimeattach" type="String" required="false">
		<help><![CDATA[
			Path of file to attach to message. Attached file is
			MIME-encoded. CFML attempts to determine the MIME
			type of the file; use the cfmailparam tag to send an
			attachement and specify the MIME type.
		]]></help>
		<values/>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			Name of cfquery from which to draw data for message(s).
			Use this attribute to send more than one message, or to
			send query results within a message.
		]]></help>
		<values/>
	</parameter>
	<parameter name="group" type="String" required="false">
		<help><![CDATA[
			Query column to use when you group sets of records to send
			as a message. For example, to send a set of billing
			statements to a customer, group on "Customer_ID."
			Case-sensitive. Eliminates adjacent duplicates when data is
			sorted by the specified field.
		]]></help>
		<values/>
	</parameter>
	<parameter name="groupcasesensitive" type="boolean" required="false">
		<help><![CDATA[
			Whether to consider case when using the group attribute. To
			group on case-sensitive records, set this attribute to Yes.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			Row in a query to start from.
		]]></help>
		<values default="1"/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of messages to send when looping over a
			query.
		]]></help>
		<values/>
	</parameter>
	<parameter name="server" type="String" required="false">
		<help><![CDATA[
			SMTP server address, or (Enterprise edition only) a
			comma-delimited list of server addresses, to use for
			sending messages. At least one server must be specified
			here or in the CFML MX Administrator. A value here
			overrides the Administrator. A value that includes a port
			specification overrides the port attribute. See the Usage
			section for details.
		]]></help>
		<values/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			TCP/IP port on which SMTP server listens for requests
			(normally 25). A value here overrides the Administrator.
		]]></help>
		<values/>
	</parameter>
	<parameter name="mailerid" type="String" required="false">
		<help><![CDATA[
			Mailer ID to be passed in X-Mailer SMTP header, which
			identifies the mailer application.
		]]></help>
		<values/>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Number of seconds to wait before timing out connection to
			SMTP server. A value here overrides the Administrator.
		]]></help>
		<values/>
	</parameter>
	<parameter name="spoolenable" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether to spool mail or always send it
			Immediately. Overrides the CFML MX Administrator
			Spool mail messages to disk for delivery setting.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="debug" type="boolean" required="false">
		<help><![CDATA[
			* Yes: sends debugging output to standard output. By
			default, if the console window is unavailable, ColdFusion
			sends output to cf_root\runtime\logs\coldfusion-out.log on
			server configurations. On J2EE configurations, with JRun,
			the default location is jrun_home/logs/servername-out.log.
			* No: does not generate debugging output.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="from">
                    <required>from,query,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,startrow,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="from">
                    <required>from,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,mailerid,mimeattach,password,port,priority,remove,replyto,server,spoolenable,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="from">
                    <required>from,group,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,groupcasesensitive,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="from">
                    <required>from,group,query,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,groupcasesensitive,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,startrow,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="subject">
                    <required>from,query,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,startrow,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="subject">
                    <required>from,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,mailerid,mimeattach,password,port,priority,remove,replyto,server,spoolenable,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="subject">
                    <required>from,group,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,groupcasesensitive,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="subject">
                    <required>from,group,query,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,groupcasesensitive,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,startrow,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="to">
                    <required>from,query,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,startrow,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="to">
                    <required>from,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,mailerid,mimeattach,password,port,priority,remove,replyto,server,spoolenable,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="to">
                    <required>from,group,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,groupcasesensitive,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
                <combination attributename="to">
                    <required>from,group,query,subject,to</required>
                    <optional>bcc,cc,charset,debug,failto,groupcasesensitive,mailerid,maxrows,mimeattach,password,port,priority,remove,replyto,server,spoolenable,startrow,timeout,type,username,usessl,usetls,wraptext</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfmailparam
		file = "file-name"
		type ="media type"
		contentID = "content ID"
		disposition = "disposition type"
   	or
   	cfmailparam
   		name = "header-name"
   		value = "header-value"
--><tag  name="cfmailparam" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Attaches a file or adds a header to an e-mail message. Can only
		be used in the cfmail tag. You can use more than one
		cfmailparam tag within a cfmail tag.
	]]></help>
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
			Attaches file to a message. Mutually exclusive with name
			attribute. The file is MIME encoded before sending.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			The MIME media type of the part. Can be a can be valid MIME
			media type
		]]></help>
		<values>
			<value option="text/plain"/>
			<value option="text/html"/>
			<value option="html"/>
			<value option="plain"/>
			<value option="text"/>
		</values>
	</parameter>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Name of header. Case-insensitive. Mutually exclusive with
			file attribute.
			The values listed are from rfc2822
		]]></help>
		<values>
			<value option="Message-Context"/>
			<value option="Apparently-To"/>
			<value option="Approved-By"/>
			<value option="Fax"/>
			<value option="Telefax"/>
			<value option="For-Approval"/>
			<value option="For-Comment"/>
			<value option="For-Handling"/>
			<value option="Mail-System-Version"/>
			<value option="Mailer"/>
			<value option="Originating-Client"/>
			<value option="X-Mailer "/>
			<value option="X-Newsreader"/>
			<value option="X-MimeOLE"/>
			<value option="User-Agent"/>
			<value option="Originator-Info"/>
			<value option="Phone"/>
			<value option="X-Envelope-From"/>
			<value option="Envelope-To"/>
			<value option="X-Envelope-To"/>
			<value option="X-Face"/>
			<value option="X-RCPT-TO"/>
			<value option="X-Sender"/>
			<value option="X-X-Sender"/>
			<value option="Posted-To"/>
			<value option="X-Admin"/>
			<value option="Errors-To"/>
			<value option="Return-Receipt-To"/>
			<value option="Read-Receipt-To"/>
			<value option="X-Confirm-reading-to"/>
			<value option="Return-Receipt-Requested"/>
			<value option="Register-Mail-Reply-Requested-By"/>
			<value option="Abuse-Reports-To"/>
			<value option="X-Complaints-To"/>
			<value option="X-Report-Abuse-To"/>
			<value option="Content-Alias"/>
			<value option="Delivered-To"/>
			<value option="X-Loop"/>
			<value option="Translated-By"/>
			<value option="Translation-Of"/>
			<value option="X-UIDL"/>
			<value option="X-URI"/>
			<value option="X-URL"/>
			<value option="X-IMAP"/>
			<value option="X-OriginalArrivalTime"/>
			<value option="Precedence"/>
			<value option="X-MSMail-Priority"/>
			<value option="X-Priority"/>
			<value option="Content-Length"/>
			<value option="Content-Conversion"/>
			<value option="Content-Class"/>
			<value option="Content-SGML-Entity"/>
			<value option="X-MIME-Autoconverted"/>
			<value option="List-Digest"/>
			<value option="Mailing-List"/>
			<value option="X-Mailing-List"/>
			<value option="List-Software"/>
			<value option="List-URL"/>
			<value option="X-Listserver"/>
			<value option="X-List-Host"/>
			<value option="Fcc"/>
			<value option="Speech-Act"/>
			<value option="Status"/>
			<value option="X-No-Archive"/>
		</values>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Value of the header.
		]]></help>
		<values/>
	</parameter>
	<parameter name="contentID" type="String" required="false">
		<help><![CDATA[
			The Identifier for the attached file. This ID should
			be globally unique and is used to identify the file in
			an IMG or other tag in the mail body that references
			the file content.
		]]></help>
		<values/>
	</parameter>
	<parameter name="disposition" type="String" required="false">
		<help><![CDATA[
			How the attached file is to be handled. Can be one
			of the following:
			 - attachment: present the file as an attachment
			 - inline: display the file contents in the message
		]]></help>
		<values default="attachment">
			<value option="attachment"/>
			<value option="inline"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfmailpart
		type="mime type"
		charset="character encoding"
		wraptext="number"
	[Mail part contents]
	/cfmailpart
--><tag  name="cfmailpart" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Specifies one part of a multipart e-mail message. Can only be
		used in the cfmail tag. You can use more than one cfmailpart
		tag within a cfmail tag.
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			The MIME media type of the part. Can be a can be valid MIME
			media type
		]]></help>
		<values>
			<value option="text/plain"/>
			<value option="text/html"/>
		</values>
	</parameter>
	<parameter name="wraptext" type="Numeric" required="false">
		<help><![CDATA[
			Specifies the maximum line length, in characters of the
			mail text. If a line has more than the specified number of
			characters, replaces the last white space character, such
			as a tab or space, preceding the specified position with a
			line break. If there are no white space characters,
			inserts a line break at the specified position. A common
			value for this attribute is 72.
		]]></help>
		<values/>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			The character encoding in which the part text is encoded.

			For more information on character encodings, see:
			www.w3.org/International/O-charset.html.
		]]></help>
		<values>
			<value option="utf-8"/>
			<value option="iso-8859-1"/>
			<value option="windows-1252"/>
			<value option="us-ascii"/>
			<value option="shift_jis"/>
			<value option="iso-2022-jp"/>
			<value option="euc-jp"/>
			<value option="euc-kr"/>
			<value option="big5"/>
			<value option="euc-cn"/>
			<value option="utf-16"/>
		</values>
	</parameter>
</tag>
<!--
	cfmodule
		template = "path"
		name = "tag_name"
		attributeCollection = "collection_structure"
		attribute_name1 = "valuea"
		attribute_name2 = "valueb" ...
--><tag  name="cfmodule" canHaveAttributeCollection="false" endtagrequired="false" single="false" xmlstyle="false" hybrid="true" allowanyattribute="true">
	<help><![CDATA[
		Invokes a custom tag for use in CFML application pages.
		This tag processes custom tag name conflicts.
	]]></help>
	<parameter name="template" type="String" required="false">
		<help><![CDATA[
			Mutually exclusive with the name attribute. A path to the
			page that implements the tag.

                    Relative path: expanded from the current page
                    Absolute path: expanded using CFML mapping
                    A physical path is not valid.
		]]></help>
		<values/>
	</parameter>
	<parameter name="name" type="String" required="false">
		<help><![CDATA[
			Mutually exclusive with the template attribute. A custom
			tag name, in the form "Name.Name.Name..." Identifies
			subdirectory, under the CFML tag root directory,
			that contains custom tag page. For example (Windows format):

			<cfmodule name = "superduper.Forums40.GetUserOptions">

			This identifies the page GetUserOptions.cfm in the
			directory CustomTags\superduper\Forums40 under the
			CFML root directory.
		]]></help>
		<values/>
	</parameter>
	<parameter name="attributecollection" type="Struct" required="false">
		<help><![CDATA[
			A collection of key-value pairs that represent
			attribute names and values. You can specify multiple
			key-value pairs. You can specify this attribute only
			once.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfntauthenticate
		username="username"
		password="password"
		domain="nt_domain"
		result="result variable"
		listGroups = "boolean"
		throwOnError = "boolean"
--><tag  name="cfntauthenticate" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Authenticates a user name and password against the
		NT domain on which ColdFusion server is running,
		and optionally retrieves the user's groups.
	]]></help>
	<return parameter="result" type="variablename"/>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			User's login name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="true">
		<help><![CDATA[
			User's login name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="domain" type="String" required="true">
		<help><![CDATA[
			Domain against which to authenticate the user. The
			ColdFusion J2EE server must be running on this domain.
		]]></help>
		<values/>
	</parameter>
	<parameter name="result" returnVarType="variablename" type="variableName" required="false">
		<help><![CDATA[
			Name of the variable in which to return the results.
			Default: cfntauthenticate
		]]></help>
		<values default="cfntauthenticate"/>
	</parameter>
	<parameter name="listgroups" type="boolean" required="false">
		<help><![CDATA[
			Boolean value specifying whether to Include a
			comma-delimited list of the user's groups in the
			result structure.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="throwonerror" type="boolean" required="false">
		<help><![CDATA[
			Boolean value specifying whether to throw an
			exception if the validation fails. If this attribute is true,
			ColdFusion throws an error if the user name or password is
			invalid; the application must handle such errors in a
			try/catch block or ColdFusion error handler page.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination attributename="domain">
                    <required>domain,password,username</required>
                    <optional>listgroups,result,throwonerror</optional>
                </combination>
                <combination attributename="password">
                    <required>domain,password,username</required>
                    <optional>listgroups,result,throwonerror</optional>
                </combination>
                <combination attributename="username">
                    <required>domain,password,username</required>
                    <optional>listgroups,result,throwonerror</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfobject
		type = "com"
		action = "action"
		class = "program_ID"
		name = "text"
		context = "context"
		server = "server_name"

	cfobject
		name = "variable name"
		component = "component name"

	cfobject
		type = "corba"
		context = "context"
		class = "file or naming service"
		name = "text"
		locale = "type-value arguments"

	cfobject
		type = "Java"
		action = "Create"
		class = "Java class"
		name = "object name"

	cfobject
		webservice= "http://....?wsdl" or "name set in Administrator"
		name = "myobjectname"
	=============================================================
	cfobject
		type = "com" "Java" "corba"
		action = "action"
		class = "program_ID"
		name = "text"
		context = "context"
		server = "server_name"
		component = "component name"
		locale = "type-value arguments"
		webservice= "http://....?wsdl" or "name set in Administrator"
--><tag  name="cfobject" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Creates a CFML object, of a specified type.

		The tag syntax depends on the object type. Some types use the
		type attribute; others do not.
	]]></help>
	<return parameter="name" type="variablename"/>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values>
			<value option="com"/>
			<value option="corba"/>
			<value option="java"/>
		</values>
	</parameter>
	<parameter name="action" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values>
			<value option="create"/>
			<value option="connect"/>
		</values>
		<triggers>
			<selectedValue attributeName="type" value="com" required="true"/>
			<selectedValue attributeName="type" value="java" required="true"/>
		</triggers>
	</parameter>
	<parameter name="class" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" value="com" required="true"/>
			<selectedValue attributeName="type" value="corba" required="true"/>
			<selectedValue attributeName="type" value="java" required="true"/>
		</triggers>
	</parameter>
	<parameter name="name" returnVarType="variablename" type="String" required="true">
		<help><![CDATA[

		]]></help>
		<values/>
	</parameter>
	<parameter name="context" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values>
			<value option="inproc"/>
			<value option="local"/>
			<value option="remote"/>
			<value option="ior"/>
			<value option="nameservice"/>
		</values>
		<triggers>
			<selectedValue attributeName="type" value="com" required="false"/>
			<selectedValue attributeName="type" value="corba" required="true"/>
		</triggers>
	</parameter>
	<parameter name="server" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="context" value="remote" required="true"/>
		</triggers>
	</parameter>
	<parameter name="component" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values/>
	</parameter>
	<parameter name="locale" type="String" required="false">
		<help><![CDATA[

		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" value="corba" required="false"/>
		</triggers>
	</parameter>
	<parameter name="webservice" type="URL" required="false">
		<help><![CDATA[

		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfobjectcache
		action = "clear"
--><tag  name="cfobjectcache" canHaveAttributeCollection="false" endtagrequired="false"  single="false" xmlstyle="false">
	<help><![CDATA[
		Flushes the query cache.
	]]></help>
	<parameter name="action" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
			clear: Clears queries from the cache in the Application
			scope
		]]></help>
		<values default="clear">
			<value option="clear"/>
		</values>
	</parameter>
	 <possiblecombinations>
                <combination switchvalue="clear">
                    <optional>action</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfoutput
		query = "query_name"
		group = "query_column"
		groupCaseSensitive = "boolean"
		startRow = "start_row"
		maxRows = "max_rows_output"
	/cfoutput
--><tag  name="cfoutput" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Displays output that can contain the results of processing
		CFML variables and functions. Can loop over the results
		of a database query.
	]]></help>
	<parameter name="query" type="query" required="false">
		<help><![CDATA[
			Name of cfquery from which to draw data for output section.
		]]></help>
		<values/>
	</parameter>
	<parameter name="group" type="String" required="false">
		<help><![CDATA[
			Query column to use to group sets of records. Eliminates
			adjacent duplicate rows when data is sorted. Use if you
			retrieved a record set ordered on one or more a query
			columns. For example, if a record set is ordered on
			"Customer_ID" in the cfquery tag, you can group the output
			on "Customer_ID."
		]]></help>
		<values/>
	</parameter>
	<parameter name="groupcasesensitive" type="boolean" required="false">
		<help><![CDATA[
			Whether to consider the case in grouping rows.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			Row from which to start output.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows to display.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfparam
		name = "param_name"
		type = "data_type"
		default = "value"
		max = "value"
		min = "value"
		pattern = "regular expression"
--><tag  name="cfparam" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Tests for a parameter's existence, tests its data type, and, if
		a default value is not assigned, optionally provides one.
	]]></help>
	<return type="Any" parameter="name"/>
	<parameter name="name" type="variableName" required="true">
		<help><![CDATA[
			Name of parameter to test (such as "client.email" or
			"cookie.backgroundColor"). If omitted, and if the
			parameter does not exist, an error is thrown.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			The valid format for the data; one of the following.
			* any: any type of value.
			* array: an array of values.
			* binary: a binary value.
			* boolean: a Boolean value: yes, no, true, false, or a number.
			* creditcard: a 13-16 digit number conforming to the mod10 algorithm.
			* date or time: a date-time value.
			* email: a valid e-mail address.
			* eurodate: a date-time value. Any date part must be in the format dd/mm/yy, The format can use /, -, or . characters as delimiters.
			* float or numeric: a numeric value.
			* guid: a Universally Unique Identifier of the form "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" where 'X' is a hexadecimal number.
			* numeric: a numeric value
			* integer: an integer.
			* query: a query object.
			* range: a numeric range, specified by the min and max attributes.
			* regex or regular_expression: matches input against pattern attribute.
			* ssn or social_security_number: a U.S. social security number.
			* string: a string value or single character.
			* struct: a structure.
			* telephone: a standard U.S. telephone number.
			* URL: an http, https, ftp, file, mailto, or news URL.
			* UUID: a ColdFusion Universally Unique Identifier, formatted 'XXXXXXXX-XXXX-XXXX-XXXXXXXXXXXXXXX', where 'X' is a hexadecimal number. See CreateUUID.
			* USdate: a U.S. date of the format mm/dd/yy, with 1-2 digit days and months, 1-4 digit years.
			* variableName: a string formatted according to ColdFusion variable naming conventions.
			* xml: XML objects and XML strings.
			* zipcode: U.S., 5- or 9-digit format ZIP codes.
		]]></help>
		<values default="Any">
			<value option="any"/>
			<value option="array"/>
			<value option="binary"/>
			<value option="boolean"/>
			<value option="creditcard"/>
			<value option="date"/>
			<value option="time"/>
			<value option="email"/>
			<value option="eurodate"/>
			<value option="float"/>
			<value option="numeric"/>
			<value option="guid"/>
			<value option="integer"/>
			<value option="query"/>
			<value option="range"/>
			<value option="regex"/>
			<value option="regular_expression"/>
			<value option="ssn"/>
			<value option="social_security_number"/>
			<value option="string"/>
			<value option="struct"/>
			<value option="telephone"/>
			<value option="url"/>
			<value option="uuid"/>
			<value option="usdate"/>
			<value option="variablename"/>
			<value option="xml"/>
			<value option="zipcode"/>
		</values>
	</parameter>
	<parameter name="default" type="Object" required="false">
		<help><![CDATA[
			Value to set parameter to if it does not exist. Any
			expression used for the default attribute is evaluated,
			even if the parameter exists.
			The result is not assigned if the parameter exists,
			but if the expression has side effects, they still occur.
		]]></help>
		<values/>
	</parameter>
	<parameter name="max" type="Numeric" required="false">
		<help><![CDATA[
			The maximum valid value; used only for range validation.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" required="false" value="range"/>
		</triggers>
	</parameter>
	<parameter name="min" type="Numeric" required="false">
		<help><![CDATA[
			The minimum valid value; used only for range validation.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" required="false" value="range"/>
		</triggers>
	</parameter>
	<parameter name="pattern" type="String" required="false">
		<help><![CDATA[
			A regular experession that the parameter must match;
			used only for regex or regular_expression validation.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="type" required="false" value="Regex"/>
			<selectedValue attributeName="type" required="false" value="regular_expression"/>
		</triggers>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>default,max,min,pattern,type</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfpop
		server = "servername"
		port = "port_number"
		username = "username"
		password = "password"
		action = "action"
		name = "queryname"
		messageNumber = "number"
		uid = "number"
		attachmentPath = "path"
		timeout = "seconds"
		maxRows = "number"
		startRow = "number"
		generateUniqueFilenames = "boolean"
--><tag  name="cfpop" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<return type="cfpop" parameter="name"/>
	<help><![CDATA[
		Retrieves or deletes e-mail messages from a POP mail server.
	]]></help>
	<return parameter="name" type="variablename"/>
	<parameter name="server" type="String" required="true">
		<help><![CDATA[
			POP server identifier:
				A host name; for example, "biff.upperlip.com"
				An IP address; for example, "192.1.2.225"
		]]></help>
		<values/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			POP port
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password
		]]></help>
		<values/>
	</parameter>
	<parameter name="action" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
			getHeaderOnly: returns message header information only
			getAll: returns message header information, message text,
				and attachments if attachmentPath is specified
			delete: deletes messages on POP server
		]]></help>
		<values>
			<value option="getHeaderOnly"/>
			<value option="getAll"/>
			<value option="delete"/>
		</values>
	</parameter>
	<parameter name="name" type="variableName" required="false">
		<help><![CDATA[
			Name for query object that contains the retrieved message
			information.
		]]></help>
		<values/>
	</parameter>
	<parameter name="messagenumber" type="Numeric" required="false">
		<help><![CDATA[
			Message number or comma-delimited list of message numbers
			to get or delete. Invalid message numbers are ignored.
			Ignored if uid is specified.
		]]></help>
		<values/>
	</parameter>
	<parameter name="uid" type="String" required="false">
		<help><![CDATA[
			UID or a comma-delimited list of UIDs to get or delete.
			Invalid UIDs are ignored.
		]]></help>
		<values/>
	</parameter>
	<parameter name="attachmentpath" type="String" required="false">
		<help><![CDATA[
			If action="getAll", specifies a directory in which to save
			any attachments. If the directory does not exist,
			CFML creates it.

			If you omit this attribute, CFML does not save any
			attachments. If you specify a relative path, the path root
			is the CFML temporary directory, which is returned by
			the GetTempDirectory function.
		]]></help>
		<values/>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Maximum time, in seconds, to wait for mail processing
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Number of messages to return or delete, starting with the
			number in startRow. Ignored if messageNumber or uid is
			specified.
		]]></help>
		<values/>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			First row number to get or delete. Ignored if messageNumber
			or uid is specified.
		]]></help>
		<values/>
	</parameter>
	<parameter name="generateuniquefilenames" type="boolean" required="false">
		<help><![CDATA[
			Yes: Generate unique filenames for files attached to an
			e-mail message, to avoid naming conflicts when files are
			saved
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	 <possiblecombinations>
                <combination switchvalue="getall">
                    <required>name,server</required>
                    <optional>attachmentpath,generateuniquefilenames,maxrows,messagenumber,password,port,startrow,timeout,uid,username</optional>
                </combination>
                <combination switchvalue="getheaderonly">
                    <required>name,server</required>
                    <optional>maxrows,messagenumber,password,port,startrow,timeout,uid,username</optional>
                </combination>
                <combination switchvalue="delete">
                    <required>server</required>
                    <optional>messagenumber,password,port,timeout,uid,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfprocessingdirective
		pageencoding = "page-encoding literal string"
	/
	or
	cfprocessingdirective
		suppressWhiteSpace = "boolean"
		pageEncoding = "page-encoding literal string"
    [CFML tags]
    /cfprocessingdirective
--><tag  name="cfprocessingdirective" canHaveAttributeCollection="false" endtagrequired="true" single="false" xmlstyle="false">
	<help><![CDATA[
		Provides the following insformation to CFML on how to
		process the current page:

		* Specifies whether to remove excess whitespace character from
		CFML generated content in the tag body.
		* Identifies the character encoding (character set) of the page
		contents.
	]]></help>
	<parameter name="suppresswhitespace" type="boolean" required="false">
		<help><![CDATA[
			Boolean; whether to suppress white space characters within
			the cfprocessingdirective block that are generated by CFML
			tags and often do not affect HTML appearance. Does not
			affect any white space in HTML code.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="pageencoding" type="String" required="false">
		<help><![CDATA[
			A string literal; cannot be a variable. Identifies the
			character encoding of the current CFML page. This attribute
			affects the entire page, not just the cfprocessing tag body.
			The value may be enclosed in single or double quotation
			marks, or none.

			For more information on character encodings, see:
			www.w3.org/International/O-charset.html.
		]]></help>
		<values>
			<value option="utf-8"/>
			<value option="iso-8859-1"/>
			<value option="windows-1252"/>
			<value option="us-ascii"/>
			<value option="shift_jis"/>
			<value option="iso-2022-jp"/>
			<value option="euc-jp"/>
			<value option="euc-kr"/>
			<value option="big5"/>
			<value option="euc-cn"/>
			<value option="utf-16"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfprocparam
		type = "in" or "out" or "inout"
		variable = "variable name"
		value = "parameter value"
		CFSQLType = "parameter datatype"
		maxLength = "length"
		scale = "decimal places"
		null = "boolean"
--><tag  name="cfprocparam" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Defines stored procedure parameters. This tag is nested within
		a cfstoredproc tag.
	]]></help>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			in: The parameter is used to send data to the database
				system only. Passes the parameter by value.
			out: The parameter is used to receive data from the
				database system only. Passes the parameter as a bound
				variable.
			inout: The parameter is used to send and receive data.
				Passes the parameter as a bound variable.
		]]></help>
		<values default="in">
			<value option="in"/>
			<value option="out"/>
			<value option="inout"/>
		</values>
	</parameter>
	<parameter name="variable" type="String" required="false">
		<help><![CDATA[
			CFML variable name; references the value that the
			output parameter has after the stored procedure is called.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Value that CFML passes to the stored procedure.
		]]></help>
		<values/>
	</parameter>
	<parameter name="cfsqltype" type="String" required="true">
		<help><![CDATA[
			SQL type to which the parameter (any type) is bound.
			CFML supports the following values, where the last
			element of the name corresponds to the SQL data type.
			Different database systems might support different subsets
			of this list. See your DBMS documentation for information
			on supported parameter types.
		]]></help>
		<values>
			<value option="CF_SQL_BIGINT"/>
			<value option="CF_SQL_BIT"/>
			<value option="CF_SQL_CHAR"/>
			<value option="CF_SQL_BLOB"/>
			<value option="CF_SQL_CLOB"/>
			<value option="CF_SQL_DATE"/>
			<value option="CF_SQL_DECIMAL"/>
			<value option="CF_SQL_DOUBLE"/>
			<value option="CF_SQL_FLOAT"/>
			<value option="CF_SQL_IDSTAMP"/>
			<value option="CF_SQL_INTEGER"/>
			<value option="CF_SQL_LONGVARCHAR"/>
			<value option="CF_SQL_MONEY"/>
			<value option="CF_SQL_MONEY4"/>
			<value option="CF_SQL_NUMERIC"/>
			<value option="CF_SQL_REAL"/>
			<value option="CF_SQL_REFCURSOR"/>
			<value option="CF_SQL_SMALLINT"/>
			<value option="CF_SQL_TIME"/>
			<value option="CF_SQL_TIMESTAMP"/>
			<value option="CF_SQL_TINYINT"/>
			<value option="CF_SQL_VARCHAR"/>
		</values>
	</parameter>
	<parameter name="maxlength" type="Numeric" required="false">
		<help><![CDATA[
			Maximum length of a string or character IN or INOUT value
			attribute. A maxLength of 0 allows any length. The
			maxLength attribute is not required when specifying
			type=out.
		]]></help>
		<values default="0"/>
	</parameter>
	<parameter name="scale" type="Numeric" required="false">
		<help><![CDATA[
			Number of decimal places in numeric parameter. A scale of 0
			allows any number of decimal places.
		]]></help>
		<values default="0"/>
	</parameter>
	<parameter name="null" type="boolean" required="false">
		<help><![CDATA[
			Whether the parameter is passed in as a null value. Not
			used with OUT type parameters.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="dbvarname" type="String" required="false">
		<help><![CDATA[
			Stored procedure variable name.  Directly matches to the name
			of the procedure parameter.
		]]></help>
		<values/>
	</parameter>	
	<possiblecombinations>
                <combination attributename="cfsqltype">
                    <required>cfsqltype</required>
                    <optional>bvarname,maxlength,null,scale,type,value,variable</optional>
                </combination>
            </possiblecombinations>
	
</tag>
<!--
	cfprocresult
		name = "query_name"
		resultSet = "1-n"
		maxRows = "maxrows"
--><tag  name="cfprocresult" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<return type="query" parameter="name"/>
	<help><![CDATA[
		Associates a query object with a result set returned by a
		stored procedure. Other CFML tags, such as cfoutput and
		cftable, use this query object to access the result set. This
		tag is nested within a cfstoredproc tag.
	]]></help>
	<parameter name="name" returnVarType="query" type="String" required="true">
		<help><![CDATA[
			Name for the query result set.
		]]></help>
		<values/>
	</parameter>
	<parameter name="resultset" type="Numeric" required="false">
		<help><![CDATA[
			Names one result set, if stored procedure returns more than
			one.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows returned in result set.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfproperty
		name="name"
		type="type"
		required="boolean"
		default="default value"
		displayname="descriptive name"
		hint="extended description"
--><tag  name="cfproperty" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false" allowanyattribute="true">
	<help><![CDATA[
		Defines properties of a CFML component (CFC). Used to
		create complex data types for web services. The attributes of
		this tag are exposed as component metadata and are subject to
		inheritance rules.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			A string; a property name. Must be a static value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			A string; identifies the property data type
		]]></help>
		<values>
			<value option="any"/>
			<value option="array"/>
			<value option="binary"/>
			<value option="boolean"/>
			<value option="date"/>
			<value option="guid"/>
			<value option="numeric"/>
			<value option="query"/>
			<value option="string"/>
			<value option="struct"/>
			<value option="uuid"/>
		</values>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
			Whether the parameter is required
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="default" type="Object" required="false">
		<help><![CDATA[
			If no property value is set when the component is used for
			a web service, specifies a default value.

			If this attribute is present, the required attribute must
			be set to "no" or not specified.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="displayname" type="String" required="false">
		<help><![CDATA[
			A value to be displayed when using introspection to show
			information about the CFC. The value appears in parentheses
			following the property name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hint" type="String" required="false">
		<help><![CDATA[
			Text to be displayed when using introspection to show
			information about the CFC. This attribute can be useful
			for describing the purpose of the parameter.
		]]></help>
		<values/>
	</parameter>
</tag>
<!--
	cfquery
		name = "query_name"
		dataSource = "ds_name"
		dbtype = "Query"
		username = "username"
		password = "password"
		maxRows = "number"
		blockFactor = "blocksize"
		timeout = "seconds"
		cachedAfter = "date"
		cachedWithin = "Timespan"
		result = "result_name"
	Either of the following:
		debug = "boolean"
	or
		debug
	>
		[SQL statement(s)]
	/cfquery
--><tag  name="cfquery" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Passes queries or SQL statements to a data source.
		It is recommended that you use the cfqueryparam tag within
		every cfquery tag, to help secure your databases from
		unauthorized users
	]]></help>
	<return type="query" parameter="name"/>
	<return type="cfquery" parameter="result"/>
	<parameter name="name" returnVarType="query" type="String" required="false">
		<help><![CDATA[
			Name of query. Used in page to reference query record set.
			Must begin with a letter. Can include letters, numbers,
			and underscores.
		]]></help>
		<values/>
	</parameter>
	<parameter name="datasource" type="String" required="false">
		<help><![CDATA[
			Name of data source from which query gets data.
		]]></help>
		<values/>
	</parameter>
	<parameter name="dbtype" type="String" required="false">
		<help><![CDATA[
			query. Use this value to specify the results of a query as
			input.
		]]></help>
		<values default="query">
			<value option="query"/>
		</values>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username in data source setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password in data source setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows to return in record set.
			-1 returns all records.
		]]></help>
		<values default="-1"/>
	</parameter>
	<parameter name="blockfactor" type="Numeric" required="false">
		<help><![CDATA[
			Maximum rows to get at a time from server. Range: 1 - 100.
			Might not be supported by some database systems.
		]]></help>
		<values/>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of seconds that each action of a query is
			permitted to execute before returning an error. The
			cumulative time may exceed this value.

			For JDBC statements, CFML sets this attribute. For
			other drivers, check driver documentation.
		]]></help>
		<values/>
	</parameter>
	<parameter name="cachedafter" type="DateTime" required="false">
		<help><![CDATA[
			Date value (for example, April 16, 1999, 4-16-99). If date
			of original query is after this date, CFML uses
			cached query data. To use cached data, current query must
			use same SQL statement, data source, query name, user name,
			password.

			A date/time object is in the range 100 AD-9999 AD.

			When specifying a date value as a string, you must enclose
			it in quotation marks.
		]]></help>
		<values/>
	</parameter>
	<parameter name="cachedwithin" type="Timespan" required="false">
		<help><![CDATA[
			Timespan, using the CreateTimeSpan function. If original
			query date falls within the time span, cached query data is
			used. CreateTimeSpan defines a period from the present,
			back. Takes effect only if query caching is enabled in the
			Administrator.

			To use cached data, the current query must use the same SQL
			statement, data source, query name, user name, and password.
		]]></help>
		<values/>
	</parameter>
	<parameter name="debug" type="boolean" required="false">
		<help><![CDATA[
			Yes: If debugging is enabled, but the Administrator
				Database Activity option is not enabled, displays SQL
				submitted to datasource and number of records returned
				by query.
			No: If the Administrator Database Activity option is
				enabled, suppresses display.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="result" returnVarType="Struct" type="String" required="false">
		<help><![CDATA[
			Specifies a name for the structure in which cfquery returns
			the result variables.
			* SQL: The SQL statement that was executed. (string)
			* Cached: If the query was cached. (boolean)
			* SqlParameters: An ordered Array of cfqueryparam values. (array)
			* RecordCount: Total number of records in the query. (numeric)
			* ColumnList: Column list, comma seperated. (numeric)
			* ExecutionTime: Execution time for the SQL request. (numeric)
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfqueryparam
		value = "parameter value"
		CFSQLType = "parameter type"
		maxLength = "maximum parameter length"
		scale = "number of decimal places"
		null = "boolean"
		list = "boolean"
		separator = "separator character"
--><tag  name="cfqueryparam" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Verifies the data type of a query parameter and, for DBMSs that
		support bind variables, enables CFML to use bind variables
		in the SQL statement. Bind variable usage enhances performance
		when executing a cfquery statement multiple times.

		This tag is nested within a cfquery tag, embedded in a query SQL
		statement. If you specify optional parameters, this tag performs
		data validation.
	]]></help>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Value that CFML passes to the right of the comparison
			operator in a where clause.

			If CFSQLType is a date or time option, ensure that the date
			value uses your DBMS-specific date format. Use the
			CreateODBCDateTime or DateFormat and TimeFormat functions
			to format the date value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="cfsqltype" type="String" required="false">
		<help><![CDATA[
			SQL type that parameter (any type) is bound to.
		]]></help>
		<values>
			<value option="cf_sql_bigint"/>
			<value option="cf_sql_bit"/>
			<value option="cf_sql_char"/>
			<value option="cf_sql_blob"/>
			<value option="cf_sql_clob"/>
			<value option="cf_sql_date"/>
			<value option="cf_sql_decimal"/>
			<value option="cf_sql_double"/>
			<value option="cf_sql_float"/>
			<value option="cf_sql_idstamp"/>
			<value option="cf_sql_integer"/>
			<value option="cf_sql_longvarchar"/>
			<value option="cf_sql_money"/>
			<value option="cf_sql_money4"/>
			<value option="cf_sql_numeric"/>
			<value option="cf_sql_real"/>
			<value option="cf_sql_refcursor"/>
			<value option="cf_sql_smallint"/>
			<value option="cf_sql_time"/>
			<value option="cf_sql_timestamp"/>
			<value option="cf_sql_tinyint"/>
			<value option="cf_sql_varchar"/>
		</values>
	</parameter>
	<parameter name="maxlength" type="Numeric" required="false">
		<help><![CDATA[
			Maximum length of parameter.
		]]></help>
		<values/>
	</parameter>
	<parameter name="scale" type="Numeric" required="false">
		<help><![CDATA[
			Number of decimal places in parameter. Applies to
			CF_SQL_NUMERIC and CF_SQL_DECIMAL.
		]]></help>
		<values/>
	</parameter>
	<parameter name="null" type="boolean" required="false">
		<help><![CDATA[
			Whether parameter is passed as a null value.

                    Yes: tag ignores the value attribute
                    No: does not
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="list" type="boolean" required="false">
		<help><![CDATA[
			Yes: The value attribute value is a delimited list
			No: it is not
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="separator" type="char" required="false">
		<help><![CDATA[
			Character that separates values in list, in value attribute.
		]]></help>
		<values>
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfregistry 
		action = "getAll"
		branch = "branch"
		type = "data type"
		name = "query name" 
		sort = "criteria"
		
	cfregistry 
		action = "get"
		branch = "branch"
		entry = "key or value"
		variable = "variable"
		type = "data type"
   
	cfregistry 
		action = "set"
		branch = "branch"
		entry = "key or value"
		type = "value type"
		value = "data"
		
	cfregistry 
		action = "delete"
		branch = "branch"
		entry = "key or value"
--><tag  name="cfregistry" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false" compatibility="deprecated">
	<help><![CDATA[
		Reads, writes, and deletes keys and values in the system registry.
		Provides persistent storage of client variables.
		Deprecated for the UNIX platform.
		Note: For this tag to execute, it must be enabled in the ColdFusion MX
		Administrator.
	]]></help>
	<return type="cfquery" parameter="name"/>
	<return type="variablename" parameter="variable"/>
	<parameter name="action" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="getAll"/>
			<value option="get"/>
			<value option="set"/>
			<value option="delete"/>
		</values>
	</parameter>
	<parameter name="branch" type="String" required="false">
		<help><![CDATA[
			Name of a registry branch.
		]]></help>
		<values/>
	</parameter>
	<parameter name="entry" type="String" required="false">
		<help><![CDATA[
			Registry value to access.
			Note: For key deletion this attribute is required.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="get"/>
			<selectedValue attributeName="action" required="true" value="set"/>
		</triggers>
	</parameter>
	<parameter name="variable" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Variable into which to put value.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="get"/>
		</triggers>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			* string: returns string values.
			* dWord: returns DWord values.
			* key: returns keys.
			* any: returns keys and values.
		]]></help>
		<values default="String">
			<value option="String"/>
			<value option="dWord"/>
			<value option="key"/>
			<value option="Any"/>
		</values>
	</parameter>
	<parameter name="name" type="variableName" required="false">
		<help><![CDATA[
			Name of record set to contain returned keys and values.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="true" value="getAll"/>
		</triggers>
	</parameter>
	
	<parameter name="directory" type="String" required="false">
		<help><![CDATA[
			Absolute pathname of directory against which to perform
			action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="name" returnVarType="query" type="String" required="false">
		<help><![CDATA[
			Name for output record set.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="false" value="list"/>
		</triggers>
	</parameter>
	
	<parameter name="mode" type="String" required="false">
		<help><![CDATA[
			Applies only to UNIX and Linux. Permissions. Octal values
			of Unix chmod command. Assigned to owner, group, and
			other, respectively.
		]]></help>
		<values/>
	</parameter>
	<parameter name="sort" type="String" required="false">
		<help><![CDATA[
			Query column(s) by which to sort directory listing.
			Delimited list of columns from query output.
		]]></help>
		<values default="asc">
			<value option="asc"/>
			<value option="desc"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" required="false" value="list"/>
		</triggers>
	</parameter>
	<parameter name="newdirectory" type="String" required="false">
		<help><![CDATA[
			New name for directory.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="action" required="false" value="rename"/>
		</triggers>
	</parameter>
	<parameter name="recurse" type="boolean" required="false">
		<help><![CDATA[
			Whether ColdFusion performs the action on subdirectories.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="action" required="false" value="list"/>
			<selectedValue attributeName="action" required="false" value="delete"/>
		</triggers>
	</parameter>
	<possiblecombinations>
                <combination switchvalue="set">
                    <required>branch,entry</required>
                    <optional>type,value</optional>
                </combination>
                <combination switchvalue="getall">
                    <required>branch,name</required>
                    <optional>entry,sort,type,variable</optional>
                </combination>
                <combination switchvalue="get">
                    <required>branch,entry,variable</required>
                    <optional>name,sort,type</optional>
                </combination>
                <combination switchvalue="delete">
                    <required>branch</required>
                    <optional>entry,type</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	Syntax 1 - Use this syntax with the ColdFusion Report Builder.
	cfreport
		template = "report definition filename"
		format = "PDF or FlashPaper" or "excel"
		name = "cf variable"
		filename = "output filename"
		query = "query variable"
		overwrite = "boolean"
		encryption = "128-bit" or "40-bit" or "none"
		ownerpassword = "password"
		userpassword = "password"
		permissions = "permission list"
	cfreportparam tags [optional]
	/cfreport
	
	OR Syntax 2 - Use this syntax with Crystal Reports
	cfreport
		report = "report_path"
		dataSource = "ds_name"
		type = "type"
		timeout = "number of seconds"
		orderBy = "result_order"
		username = "username"
		password = "password"
		formula = "formula"
	/cfreport
--><tag  name="cfreport" canHaveAttributeCollection="false" endtagrequired="false"  single="false" xmlstyle="false">
	<help><![CDATA[
		Used to do either of the following:
		- Execute a report definition created with the ColdFusion
		  Report Builder, displaying it in PDF, FlashPaper, or Excel
		  format. You can optionally save this report to a file.
		- Run a predefined Crystal Reports report. Applies only to
		Windows systems. Uses the CFCRYSTAL.exe file to generate
		reports. Sets parameters in the Crystal Reports engine
		according to its attribute values.
	]]></help>
	<return type="Any" parameter="name"/>
	<parameter name="template" type="String" required="false">
		<help><![CDATA[
			Specifies the path to the report definition file,
			relative to the web root.
		]]></help>
		<values/>
	</parameter>
	<parameter name="format" type="String" required="false">
		<help><![CDATA[
			Specifies the output format.
		]]></help>
		<values>
			<value option="PDF"/>
			<value option="FlashPaper"/>
			<value option="Excel"/>
		</values>
	</parameter>
	<parameter name="name" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			The name of the ColdFusion variable that will hold
			the report output. You cannot specify both name and
			filename.
		]]></help>
		<values/>
	</parameter>
	<parameter name="filename" type="String" required="false">
		<help><![CDATA[
			The filename to contain the report. You cannot
			specify both name and filename.
		]]></help>
		<values/>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			The name of the query that contains input data for
			the report. If you omit this parameter, the report
			definition obtains data from the internal SQL or from
			cfreportparam items.
		]]></help>
		<values/>
	</parameter>
	<parameter name="overwrite" type="boolean" required="false">
		<help><![CDATA[
			Specifies whether to overwrite files that have the
			same name as that specified in the filename attribute.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="encryption" type="String" required="false">
		<help><![CDATA[
			Specifies whether the output is encrypted. PDF format only.
			Default: none
		]]></help>
		<values default="none">
			<value option="128-bit"/>
			<value option="40-bit"/>
			<value option="none"/>
		</values>
	</parameter>
	<parameter name="ownerpassword" type="String" required="false">
		<help><![CDATA[
			Specifies an owner password. PDF format only.
		]]></help>
		<values/>
	</parameter>
	<parameter name="userpassword" type="String" required="false">
		<help><![CDATA[
			Specifies a user password. PDF format only.
		]]></help>
		<values/>
	</parameter>
	<parameter name="permissions" type="String" required="false">
		<help><![CDATA[
			Specifies one or more permissions. PDF format only.
			Separate multiple permissions with a comma.
		]]></help>
		<values>
			<value option="AllowPrinting,AllowCopy,AllowScreenReaders"/>
			<value option="AllowPrinting"/>
			<value option="AllowModifyContents"/>
			<value option="AllowCopy"/>
			<value option="AllowModifyAnnotations"/>
			<value option="AllowFillIn"/>
			<value option="AllowScreenReaders"/>
			<value option="AllowAssembly"/>
			<value option="AllowDegradedPrinting"/>
			<value option="AllowPrinting,AllowModifyContents,AllowCopy,AllowModifyAnnotations,AllowFillIn,AllowScreenReaders,AllowAssembly,AllowDegradedPrinting"/>
		</values>
	</parameter>
	<parameter name="datasource" type="String" required="false">
		<help><![CDATA[
			Name of registered or native data source.
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			* standard (not valid for Crystal Reports 8.0)
                    * netscape
                    * microsoft
		]]></help>
		<values default="standard">
			<value option="standard"/>
			<value option="netscape"/>
			<value option="microsoft"/>
		</values>
	</parameter>
	<parameter name="timeout" type="Numeric" required="false">
		<help><![CDATA[
			Maximum time, in seconds, in which a connection must be
			made to a Crystal Report.
		]]></help>
		<values/>
	</parameter>
	<parameter name="report" type="String" required="false">
		<help><![CDATA[
			Report path. Store Crystal Reports files in the same
			directories as CFML page files.
		]]></help>
		<values/>
	</parameter>
	<parameter name="orderby" type="String" required="false">
		<help><![CDATA[
			Orders results according to your specifications.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Username required for entry into database from which report
			is created. Overrides default settings for data source in
			CFML Administrator.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Password that corresponds to username required for database
			access. Overrides default settings for data source in
			CFML Administrator.
		]]></help>
		<values/>
	</parameter>
	<parameter name="formula" type="String" required="false">
		<help><![CDATA[
			One or more named formulas. Terminate each formula with a
			semicolon. Use the format:

			formula = "formulaname1='formula1';formulaname2='formula2';"

			If you use a semicolon in a formula, you must escape it by
			typing it twice (;;). For example:

			formula = "Name1 = 'Val_1a;;Val_1b';Name2 = 'Val2';"
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfreportparam
		name = "data name"
		value = "data value"
--><tag  name="cfreportparam" canHaveAttributeCollection="false" endtagrequired="false" single="true" xmlstyle="false">
	<help><![CDATA[
		Passes input parameters to a ColdFusion Report Builder
		report definition. Allowed inside cfreport tag bodies only.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Variable name for data that is passed. The ColdFusion
			Report Builder report definition must include an input
			parameter that matches this name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			Value of the data that is sent.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfrethrow
--><tag  name="cfrethrow" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Rethrows the currently active exception. Preserves the
		exception's cfcatch.type and cfcatch.tagContext variable
		values.
	]]></help>
</tag>
<!--
	cfreturn
		expr
--><tag  name="cfreturn" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Returns result values from a component method. Contains an
		expression returned as result of the function.
		An expression; the result of the function from which this tag
		is called.
	]]></help>
</tag>
<!--
	cfsavecontent
		variable = "variable name"
		[the content]
	/cfsavecontent
--><tag  name="cfsavecontent" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Saves the generated content of the cfsavecontent tag, including
		the results of evaluating expressions and executing custom tags,
		in the specified variable.
	]]></help>
	<return parameter="variable" type="variablename"/>
	<parameter name="variable" returnVarType="variablename" type="String" required="true">
		<help><![CDATA[
			Name ofthe variable in which to save the generated content
			of the tag.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="variable">
                    <required>variable</required>
                    <optional/>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfschedule
		action = "update"
		task = "taskname"
		operation = "HTTPRequest"
		file = "filename"
		path = "path_to_file"
		startDate = "date"
		startTime = "time"
		url = "URL"
		port = "port_number"
		publish = "boolean"
		endDate = "date"
		endTime = "time"
		interval = "seconds"
		requestTimeOut = "seconds"
		username = "username"
		password = "password"
		proxyServer = "hostname"
		proxyPort = "port_number"
		proxyUser = "username"
		proxyPassword = "password"
		resolveURL = "boolean"
--><tag  name="cfschedule" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Provides a programmatic interface to the CFML scheduling
		engine. Can run a CFML page at scheduled intervals, with the
		option to write the page output to a static HTML page. This
		feature enables you to schedule pages that publish data, such
		as reports, without waiting while a database transaction is
		performed to populate the page.
	]]></help>
	<parameter name="action" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
			delete: deletes the specified task
			update: updates an existing task or creates a new task,
				if one with the name specified by the task attribute
				does not exist
			run: executes the specified task
		]]></help>
		<values>
			<value option="delete"/>
			<value option="update"/>
			<value option="run"/>
		</values>
	</parameter>
	<parameter name="task" type="String" required="true">
		<help><![CDATA[
			Name of the task.
		]]></help>
		<values/>
	</parameter>
	<parameter name="operation" type="String" required="false">
		<help><![CDATA[
			Operation that the scheduler performs. Must be HTTPRequest.
		]]></help>
		<values/>
	</parameter>
	<parameter name="file" type="String" required="false">
		<help><![CDATA[
			Name of the file in which to store the published output of
			the scheuled task
		]]></help>
		<values/>
	</parameter>
	<parameter name="path" type="String" required="false">
		<help><![CDATA[
			Path to the directory in which to put the published file.
		]]></help>
		<values/>
	</parameter>
	<parameter name="startdate" type="String" required="false">
		<help><![CDATA[
			Date on which to first run the scheuled task.
		]]></help>
		<values/>
	</parameter>
	<parameter name="starttime" type="String" required="false">
		<help><![CDATA[
			Time at which to run the scheduled of task starts.
		]]></help>
		<values/>
	</parameter>
	<parameter name="URL" type="URL" required="false">
		<help><![CDATA[
			URL of the page to execute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="port" type="Numeric" required="false">
		<help><![CDATA[
			Port to use on the server that is specified by the url
			parameter. If resolveURL = "yes", retrieved document URLs
			that specify a port number are automatically resolved, to
			preserve links in the retrieved document. A port value in
			the url attribute overrides this value.
		]]></help>
		<values default="80"/>
	</parameter>
	<parameter name="publish" type="boolean" required="false">
		<help><![CDATA[
			Yes: save the result to a file
			No: does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="enddate" type="String" required="false">
		<help><![CDATA[
			Date when scheduled task ends.
		]]></help>
		<values/>
	</parameter>
	<parameter name="endtime" type="Numeric" required="false">
		<help><![CDATA[
			Time when scheduled task ends (seconds).
		]]></help>
		<values/>
	</parameter>
	<parameter name="interval" type="String" required="false">
		<help><![CDATA[
		Interval at which task is scheduled.
			* number of seconds (minimum is 60)
			* once
			* daily
			* weekly
			* monthly
		]]></help>
		<values>
			<value option="once"/>
			<value option="daily"/>
			<value option="weekly"/>
			<value option="monthly"/>
		</values>
	</parameter>
	<parameter name="requesttimeout" type="Numeric" required="false">
		<help><![CDATA[
			Can be used to extend the default timeout period.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Username, if URL is protected.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Password, if URL is protected.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxyserver" type="String" required="false">
		<help><![CDATA[
			Host name or IP address of a proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxyport" type="Numeric" required="false">
		<help><![CDATA[
			Port number to use on the proxy server.
		]]></help>
		<values default="80"/>
	</parameter>
	<parameter name="proxyuser" type="String" required="false">
		<help><![CDATA[
			User name to provide to the proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="proxypassword" type="String" required="false">
		<help><![CDATA[
			Password to provide to the proxy server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="resolveurl" type="boolean" required="false">
		<help><![CDATA[
			Yes: resolve links in the output page to absolute
				references
			No: does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination switchvalue="update">
                    <required>interval,operation,startdate,starttime,task,url</required>
                    <optional>enddate,endtime,file,password,path,port,proxypassword,proxyport,proxyserver,proxyuser,publish,requesttimeout,resolveurl,username</optional>
                </combination>
                
                <combination switchvalue="run">
                    <required>task</required>
                    <optional/>
                </combination>
                <combination switchvalue="delete">
                    <required>task</required>
                    <optional/>
                </combination>
                
            </possiblecombinations>
</tag>
<!--
	cfscript
		[cfscript code here]
	/cfscript
--><tag  name="cfscript" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Encloses a code block that contains cfscript statements.

		You cannot use some CFML reserved words in this tag. You
		cannot put a user-defined function whose name begins with any
		of these strings within this tag:
		cf,cf_,_cf,CFML,CFML_,_CFML
	]]></help>
</tag>
<!--
	cfsearch
		name = "search_name"
		collection = "collection_name"
		category = "category[,category2,...]"
		categoryTree = "tree_location"
		status = ""
		type = "criteria"
		criteria = "search_expression"
		maxRows = "number"
		startRow = "row_number"
		suggestions = "suggestion_option"
		contextPassages = "number_of_passages"
		contextBytes = "number_of_bytes"
		contextHighlightBegin = "html_string"
		contextHighlightEnd = "html_string"
		previousCriteria = "criteria"
		language = "language"
--><tag  name="cfsearch" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Searches Verity collections using CFML or K2Server,
		whichever search engine a collection is registered by.
		(CFML can also search collections that have not been
		registered, with the cfcollection tag.)

		A collection must be created and indexed before this tag can
		return search results.
	]]></help>
	<return parameter="name" type="query"/>
	<parameter name="name" returnVarType="query" type="String" required="true">
		<help><![CDATA[
			Name of the search query.
		]]></help>
		<values/>
	</parameter>
	<parameter name="collection" type="String" required="true">
		<help><![CDATA[
			One or more collection names. You can specify more
			than one collection unless you are performing a
			category search (that is, specifying category or
			categoryTree).

			One or more collection names. You can specify more
			than one collection unless you are performing a
			category search (that is, specifying category or
			categoryTree).
		]]></help>
		<values/>
	</parameter>
	<parameter name="category" type="String" required="false">
		<help><![CDATA[
			A list of categories, separated by commas, to which
			the search is limited. If specified, and the collection
			does not have categories enabled, ColdFusion
			throws an exception.
		]]></help>
		<values/>
	</parameter>
	<parameter name="categorytree" type="String" required="false">
		<help><![CDATA[
			The location in a hierarchical category tree at which
			to start the search. ColdFusion searches at and
			below this level. If specified, and the collection does
			not have categories enabled, ColdFusion throws an
			exception. Can be used in addition to category
			attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="status" type="String" required="false">
		<help><![CDATA[
			Specifies the name of the structure variable into
			which ColdFusion places search information, including
			alternative criteria suggestions (spelling corrections).
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			Used to specify the parser that Verity uses to process
			the criteria.
			- simple: STEM and MANY operators are implicitly used.
			- explicit: operators must be invoked explicitly. Also
			known as Bool_Plus)
			- internet: for documents that are mostly WYSIWIG
			(what-you-see-is-what-you-get) documents. Also
			known as Internet_advanced.
			- internet_basic: minimizes search time.
			- natural: specifies the Query By Example (QBE)
			parser. Also known as FreeText.
		]]></help>
		<values default="simple">
			<value option="simple"/>
			<value option="explicit"/>
			<value option="internet"/>
			<value option="internet_basic"/>
			<value option="natural"/>
		</values>
	</parameter>
	<parameter name="criteria" type="String" required="false">
		<help><![CDATA[
			Search criteria. Follows the syntax rules of the type
			attribute. If you pass a mixed-case entry in this attribute,
			the search is case-sensitive. If you pass all uppercase or
			all lowercase, the search is case-insensitive. Follow
			Verity syntax and delimiter character rules; see Using
			Verity Search Expressions in Developing CFML MX
			Applications.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows to return in query results.
			Default: all
		]]></help>
		<values default="all"/>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			First row number to get.
			Default: 1
		]]></help>
		<values default="1"/>
	</parameter>
	<parameter name="suggestions" type="String" required="false">
		<help><![CDATA[
			Specifies whether Verity returns spelling suggestions
			for possibly misspelled words. Use one of the
			following options:
			 - always: Verity always returns spelling suggestions.
			 - never: Verity never returns spelling suggestions.
			 - positive integer: Verity returns spelling suggestions
			   if the number of documents retrieved by the search
			   is less than or equal to the number specified.
			There is a small performance penalty for retrieving
			suggestion data.
			Default: never
		]]></help>
		<values default="never">
			<value option="always"/>
			<value option="never"/>
			<value option="5"/>
			<value option="10"/>
		</values>
	</parameter>
	<parameter name="contextpassages" type="Numeric" required="false">
		<help><![CDATA[
			The number of passages/sentences Verity returns in
			the context summary (that is, the context column of
			the results).
			Default: 3
		]]></help>
		<values default="3"/>
	</parameter>
	<parameter name="contextbytes" type="Numeric" required="false">
		<help><![CDATA[
			The maximum number of bytes Verity returns in the
			context summary.
			Default: 300
		]]></help>
		<values default="300"/>
	</parameter>
	<parameter name="contexthighlightbegin" type="String" required="false">
		<help><![CDATA[
			The HTML to prepend to search terms in the context
			summary. Use this attribute in conjunction with
			contextHighlightEnd to highlight search terms in the
			context summary.
			Default: <b>
		]]></help>
		<values default="&lt;b&gt;">
			<value option="&lt;b&gt;"/>
			<value option="&lt;strong&gt;"/>
			<value option="&lt;span class=&quot;highlight&quot;&gt;"/>
		</values>
	</parameter>
	<parameter name="contexthighlightend" type="String" required="false">
		<help><![CDATA[
			The HTML to prepend to search terms in the context
			summary. Use this attribute in conjunction with
			contextHighlightEnd to highlight search terms in the
			context summary.
			Default: </b>
		]]></help>
		<values default="&lt;/b&gt;">
			<value option="&lt;/b&gt;"/>
			<value option="&lt;/strong&gt;"/>
			<value option="&lt;/span&gt;"/>
		</values>
	</parameter>
	<parameter name="previouscriteria" type="String" required="false">
		<help><![CDATA[
			The name of a result set from an existing set of search
			results. Verity searches the result set for criteria
			without regard to the previous search score or rank.
			Use this attribute to implement searching within result
			sets.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="collection">
                    <required>collection,name</required>
                    <optional>category,categorytree,contextbytes,contexthighlightbegin,contexthighlightend,contextpassages,criteria,external,language,maxrows,previouscriteria,startrow,status,suggestions,type</optional>
                </combination>
                <combination attributename="name">
                    <required>collection,name</required>
                    <optional>category,categorytree,contextbytes,contexthighlightbegin,contexthighlightend,contextpassages,criteria,external,language,maxrows,previouscriteria,startrow,status,suggestions,type</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfselect
		name = "name"
		label = "label"
		style = "style specification"
		size = "integer"
		required = "boolean"
		message = "text"
		onError = "text"
		multiple = "boolean"
		query = "queryname"
		value = "text"
		display = "text"
		group = "query column name
		queryPosition = "above" or "below"
		selected = "value or list"
		onKeyUp = "JavaScript or ActionScript"
		onKeyDown = "JavaScript or ActionScript"
		onMouseUp = "JavaScript or ActionScript"
		onMouseDown = "JavaScript or ActionScript"
		onChange = "JavaScript or ActionScript"
		onClick = "JavaScript or ActionScript"
		visible = "boolean"
		enabled = "boolean"
		tooltip = "Tip text"
		height = "number of pixels" Flash only
		width = "number of pixels" Flash only

	zero or more HTML option tags
	/cfselect
--><tag  name="cfselect" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Constructs a drop-down list box form control. Used within a
		cfform tag.

		You can populate the list from a query, or by using the HTML
		option tag.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name of the select form element
		]]></help>
		<values/>
	</parameter>
	<parameter name="id" type="String" required="false">
		<help><![CDATA[
			ID for form input element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			Label to put next to the control on a Flash or XML-format form.
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			In HTML or XML format forms, ColdFusion passes the
			style attribute to the browser or XML.
			In Flash format, must be a style specification in CSS
			format, with the same syntax and contents as used in
			Macromedia Flex for the corresponding Flash element.
			Post alpha we will document specifics.
		]]></help>
		<values/>
	</parameter>
	<parameter name="size" type="Numeric" required="false">
		<help><![CDATA[
			Number of entries to display at one time. The default, 1,
			displays a drop-down list. Any other value displays a list
			box with size number of entries visible at one time.
		]]></help>
		<values default="1"/>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
			If true a list element must be selected when form is submitted.
			Note: This attribute has no effect if you omit the size
			attribute or set it to 1 because the browser always submits
			the displayed item. You can work around this issue format
			forms by having an initial option tag with value=" " (note the
			space character between the quotation marks).
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message to display if required="true" and no selection is made.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to execute if validation fails.
		]]></help>
		<values/>
	</parameter>
	<parameter name="multiple" type="boolean" required="false">
		<help><![CDATA[
			- true: allow selecting multiple elements in drop-down list
			- false: don't allow selecting multiple elements
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			Name of query to populate drop-down list.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Query column to use for the value of each list element.
			Used with query attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="display" type="String" required="false">
		<help><![CDATA[
			Query column to use for the display label of each list
			element. Used with query attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="group" type="String" required="false">
		<help><![CDATA[
			Query column to use to group the items in the drop-down
			list into a two-level hierarchical list..
		]]></help>
		<values/>
	</parameter>
	<parameter name="queryposition" type="String" required="false">
		<help><![CDATA[
			If you populate the options list with a query and use HTML
			option child tags to specify additional entries, determines
			the location of the items from the query relative to the items
			from the option tags:
			 - above: Put the query items above the options items.
			 - below: Put the query items below the options items.
			Default: above
		]]></help>
		<values default="above">
			<value option="above"/>
			<value option="below"/>
		</values>
	</parameter>
	<parameter name="selected" type="String" required="false">
		<help><![CDATA[
			One or more option values to preselect in the selection list.
			To specify multiple values, use a comma-delimited list. This
			attribute applies only if selection list items are generated
			from a query. The cfform preservedata attribute value can
			override this value.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onkeyup" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user releases a keyboard key in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onkeydown" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash)
			ActionScript to run when the user depresses a keyboard
			key in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onmouseup" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user presses a mouse button in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onmousedown" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user releases a mouse button in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the control changes due to user action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onclick" type="String" required="false">
		<help><![CDATA[
			JavaScript to run when the user clicks the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether to show the control.
			Space that would be occupied by an invisible control is
			blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether to show the control.
			Space that would be occupied by an invisible control is
			blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Flash only: Text to display when the mouse pointer hovers over the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			The height of the control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			The width of the control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="passthrough" type="String" required="false" compatibility="deprecated">
		<help><![CDATA[
			This attribute is deprecated.
			
			Passes arbitrary attribute-value pairs to the HTML code
			that is generated for the tag. You can use either of the
			following formats:
			
			passthrough="title=""myTitle"""
			passthrough='title="mytitle"'
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>bind,bindattribute,bindonload,class,display,group,id,message,multiple,onbinderror,onblur,onchange,onclick,ondblclick,onerror,onfocus,passthrough,query,required,selected,size,sourcefortooltip,style,tabindex,tooltip,value</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfset
		var variable_name = expression
--><tag  allowanyattribute="true" canHaveAttributeCollection="false" endtagrequired="false"  name="cfset" single="true" xmlstyle="false">
	<help><![CDATA[
		Sets a value in CFML. Used to create a variable, if it
		does not exist, and assign it a value. Also used to call
		functions.
	]]></help>
</tag>
<!--
	cfsetting
		enableCFoutputOnly = "boolean"
		showDebugOutput = "boolean"
		requestTimeOut = "value in seconds"
--><tag  name="cfsetting" canHaveAttributeCollection="false" endtagrequired="false"  single="true" hybrid="true" xmlstyle="false">
	<help><![CDATA[
		Controls aspects of page processing, such as the output of
		HTML code in pages.
	]]></help>
	<parameter name="enablecfoutputonly" type="boolean" required="false">
		<help><![CDATA[
			Yes: blocks output of HTML that is outside cfoutput tags
			No: displays HTML that is outside cfoutput tags.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="showdebugoutput" type="boolean" required="false">
		<help><![CDATA[
			Yes: If debugging is enabled in the Administrator, displays
				debugging information
			No: suppresses debugging information that would otherwise
				display at end of generated page.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="requesttimeout" type="Numeric" required="false">
		<help><![CDATA[
			Integer; number of seconds. Time limit, after which
			CFML processes the page as an unresponsive thread.
			Overrides the timeout set in the CFML Administrator.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cfsilent
	...
	/cfsilent
--><tag  name="cfsilent" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Suppresses output produced by CFML within a tag's scope.
	]]></help>
	<possiblecombinations/>
</tag>
<!--
	cfslider 
		name = "name"
		label = "text"
		range = "min_value, max_value"
		scale = "uinteger"
		value = "integer"
		onValidate = "script_name"
		message = "text"
		onError = "text"
		height = "integer"
		width = "integer"
		vSpace = "integer"
		hSpace = "integer"
		align = "alignment"
		lookAndFeel = "motif" or "windows" or "metal"
		vertical = "boolean"
		bgColor = "color"
		textColor = "color"
		font = "font_name"
		fontSize = "integer"
		italic = "boolean"
		bold = "boolean"
		notSupported = "text"
--><tag  name="cfslider" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Puts a slider control, for selecting a numeric value from a
		range, in a ColdFusion form. The slider moves over the slider
		groove. As the user moves the slider, the current value
		displays. Used within a cfform tag.
		Not supported with Flash forms.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name for cfslider control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			Label to display with control.
			For example, "Volume" This displays: "Volume %value%"
			To reference the value, use "%value%". If %% is omitted,
			slider value displays directly after label.
		]]></help>
		<values/>
	</parameter>
	<parameter name="range" type="String" required="false">
		<help><![CDATA[
			Numeric slider range values.
			Separate values with a comma.
		]]></help>
		<values default="0,100"/>
	</parameter>
	<parameter name="scale" type="Numeric" required="false">
		<help><![CDATA[
			Unsigned integer. Defines slider scale, within range.
			For example: if range = "0,1000" and scale = "100",
			the display values are: 0, 100, 200, 300, ...
			Signed and unsigned integers in ColdFusion are in the
			range -2,147,483,648 to 2,147,483,647. 
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Starting slider setting. Must be within the range values.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onvalidate" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to validate user input; in this
			case, a change to the default slider value. Specify only
			the function name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message text to appear if validation fails.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to execute if validation fails.
			Specify only the function name.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Slider control height, in pixels.
		]]></help>
		<values default="40"/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Slider control width, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="vspace" type="Numeric" required="false">
		<help><![CDATA[
			Vertical spacing above and below slider, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hspace" type="Numeric" required="false">
		<help><![CDATA[
			Horizontal spacing to left and right of slider, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="align" type="String" required="false">
		<help><![CDATA[
			Alignment of slider:
			* top
			* left
			* bottom
			* baseline
			* texttop
			* absbottom
			* middle
			* absmiddle
			* right
		]]></help>
		<values>
			<value option="top"/>
			<value option="left"/>
			<value option="bottom"/>
			<value option="baseline"/>
			<value option="texttop"/>
			<value option="absbottom"/>
			<value option="middle"/>
			<value option="absmiddle"/>
			<value option="right"/>
		</values>
	</parameter>
	<parameter name="lookandfeel" type="String" required="false">
		<help><![CDATA[
			- motif: renders slider in Motif style
			- windows: renders slider in Windows style
			- metal: renders slider in Java Swing style
			If platform does not support style option, tag defaults to
			platform default style.
			Default: windows
		]]></help>
		<values default="windows">
			<value option="motif"/>
			<value option="windows"/>
			<value option="metal"/>
		</values>
	</parameter>
	<parameter name="vertical" type="boolean" required="false">
		<help><![CDATA[
			Yes: Renders slider in browser vertically. You must set
			width and height attributes; ColdFusion does not
			automatically swap width and height values.
			No: Renders slider horizontally.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="bgcolor" type="String" required="false">
		<help><![CDATA[
			Background color of control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="gray"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="textcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="gray"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="font" type="String" required="false">
		<help><![CDATA[
			Font name for data in tree control.
		]]></help>
		<values default="arial">
			<value option="arial"/>
			<value option="times"/>
			<value option="courier"/>
			<value option="arialunicodeMS"/>
		</values>
	</parameter>
	<parameter name="fontsize" type="Numeric" required="false">
		<help><![CDATA[
			Font size for text in tree control, in points.
		]]></help>
		<values/>
	</parameter>
	<parameter name="italic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays tree control text in italics
			No: it does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="bold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays tree control text in bold
			No: it does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="notsupported" type="String" required="false">
		<help><![CDATA[
			Text to display if a page that contains a Java applet-based
			cfform control is opened by a browser that does not
			support Java or has Java support disabled.
			Default:
			"<b>Browser must support Java to <br>view ColdFusion Java
			Applets!</b>"
		]]></help>
		<values default="&lt;b&gt;Browser must support Java to &lt;br&gt;view ColdFusion Java Applets!&lt;/b&gt;"/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>align,bgcolor,bold,font,fontsize,groovecolor,height,hspace,img,imgstyle,italic,label,lookandfeel,message,notsupported,onerror,onvalidate,range,refreshlabel,scale,textcolor,tickmarkimages,tickmarklabels,tickmarkmajor,tickmarkminor,value,vertical,vspace,width</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfstoredproc
		procedure = "procedure name"
		dataSource = "ds_name"
		username = "username"
		password = "password"
		blockFactor = "blocksize"
		debug = "boolean"
		returnCode = "boolean"
		result = "result_name"
--><tag  name="cfstoredproc" canHaveAttributeCollection="false" endtagrequired="false"  single="false" xmlstyle="false">
	<help><![CDATA[
		Executes a stored procedure in a server database. It
		specifies database connection information and identifies
		the stored procedure.
	]]></help>
	<return parameter="result" type="query"/>
	<parameter name="procedure" type="String" required="true">
		<help><![CDATA[
			Name of stored procedure on database server.
		]]></help>
		<values/>
	</parameter>
	<parameter name="datasource" type="String" required="true">
		<help><![CDATA[
			Name of data source that points to database that contains
			stored procedure.
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username in data source setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password in data source setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="blockfactor" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows to get at a time from server.
			Range is 1 to 100.
		]]></help>
		<values/>
	</parameter>
	<parameter name="debug" type="boolean" required="false">
		<help><![CDATA[
			Yes: Lists debug information on each statement
			No: does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="returncode" type="boolean" required="false">
		<help><![CDATA[
			Yes: Tag populates cfstoredproc.statusCode with status
				code returned by stored procedure.
			No: does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="result" type="variableName" required="false">
		<help><![CDATA[
			Specifies a name for the structure in which cfstoredproc
			returns the statusCode and ExecutionTime variables. If
			set, this value replaces cfstoredproc as the prefix to
			use when accessing those variables.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="procedure">
                    <required>procedure</required>
                    <optional>blockfactor,datasource,debug,password,result,returncode,username</optional>
                </combination>
                <combination attributename="procedure">
                    <required>datasource,procedure</required>
                    <optional>blockfactor,debug,password,result,returncode,username</optional>
                </combination>
                <combination attributename="procedure">
                    <required>procedure</required>
                    <optional>blockfactor,datasource,debug,password,result,returncode,username</optional>
                </combination>
                <combination attributename="procedure">
                    <required>datasource,procedure</required>
                    <optional>blockfactor,debug,password,result,returncode,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfswitch
		expression = "expression"
		[one or more cfcase tags
		zero or one cfdefaultcase tags]
	/cfswitch
--><tag  name="cfswitch" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Evaluates a passed expression and passes control to the cfcase
		tag that matches the expression result. You can, optionally,
		code a cfdefaultcase tag, which receives control if there is no
		matching cfcase tag value.
	]]></help>
	<parameter name="expression" type="String" required="true">
		<help><![CDATA[
			CFML expression that yields a scalar value.
			CFML converts integers, real numbers, Booleans, and
			dates to numeric values. For example, True, 1, and 1.0 are
			all equal.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cftable
		query = "query_name"
		maxRows = "maxrows_table"
		colSpacing = "number_of_spaces"
		headerLines = "number_of_lines"
		HTMLTable
		border
		colHeaders
		startRow = "row_number">
	/cftable

--><tag  name="cftable" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Builds a table in a CFML page. This tag renders data as
		preformatted text, or, with the HTMLTable attribute, in an
		HTML table. If you do not want to write HTML table tag code, or
		if your data can be presented as preformatted text, use this
		tag.

		Preformatted text (defined in HTML with the <pre> and </pre>
		tags) displays text in a fixed-width font. It displays white
		space and line breaks exactly as they are written within the
		pre tags. For more information, see an HTML reference guide.

		To define table column and row characteristics, use the cfcol
		tag within this tag.
	]]></help>
	<parameter name="query" type="query" required="true">
		<help><![CDATA[
			Name of cfquery from which to draw data.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxrows" type="Numeric" required="false">
		<help><![CDATA[
			Maximum number of rows to display in the table.
		]]></help>
		<values/>
	</parameter>
	<parameter name="colspacing" type="Numeric" required="false">
		<help><![CDATA[
			Number of spaces between columns
		]]></help>
		<values/>
	</parameter>
	<parameter name="headerlines" type="Numeric" required="false">
		<help><![CDATA[
			Number of lines to use for table header (the default leaves
			one line between header and first row of table).
		]]></help>
		<values/>
	</parameter>
	<parameter name="htmltable" type="Any" required="false">
		<help><![CDATA[
			Renders data in an HTML 3.0 table.

			If you use this attribute (regardless of its value),
			CFML renders data in an HTML table.
		]]></help>
		<values/>
	</parameter>
	<parameter name="border" type="Any" required="false">
		<help><![CDATA[
			Displays border around table.

			If you use this attribute (regardless of its value),
			CFML displays a border around the table.

			Use this only if you use the HTMLTable attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="colheaders" type="Any" required="false">
		<help><![CDATA[
			Displays column heads. If you use this attribute, you must
			also use the cfcol tag header attribute to define them.

			If you use this attribute (regardless of its value),
			CFML displays column heads.
		]]></help>
		<values/>
	</parameter>
	<parameter name="startrow" type="Numeric" required="false">
		<help><![CDATA[
			The query result row to put in the first table row.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="query">
                    <required>query</required>
                    <optional>border,colheaders,colspacing,headerlines,htmltable,maxrows,startrow</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cftextarea
		name = "name"
		label = "text"
		required = "boolean"
		style = "style specification"
		validate = "data type"
		validateAt= one or more of "onBlur", "onServer", "onSubmit"
		message = "text"
		range = "min_value, max_value"
		maxlength = "number"
		pattern = "regexp"
		onValidate = "script name"
		onError = "script name"
		disabled = "true, false, or no attribute value"
		value = "text"
		onKeyUp = "JavaScript or ActionScript"
		onKeyDown = "JavaScript or ActionScript"
		onMouseUp = "JavaScript or ActionScript"
		onMouseDown = "JavaScript or ActionScript"
		onChange = "JavaScript or ActionScript"
		onClick = "JavaScript or ActionScript"
		visible = "boolean"
		enabled = "boolean"
		tooltip = "Tip text"
		height = "number of pixels" Flash only
		width = "number of pixels" Flash only
	text
	/cftextarea
--><tag  name="cftextarea" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Puts a multiline text entry box in a cfform tag and
		controls its display characteristics.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name of the cftextinput control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="id" type="String" required="true">
		<help><![CDATA[
			ID for form input element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			Label to put beside the control on a form.
		]]></help>
		<values/>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			In HTML or XML format forms, ColdFusion passes the
			style attribute to the browser or XML.
			In Flash format forms, must be a style specification in
			CSS format, with the same syntax and contents as used
			in Macromedia Flex for the corresponding Flash element.
		]]></help>
		<values/>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
			- true: the field must contain text.
			- false: the field can be empty.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="validate" type="String" required="false">
		<help><![CDATA[
			The type or types of validation to do. Available validation
			types and algorithms depend on the format. For details,
			see the Usage section of the cfinput tag reference.
		]]></help>
		<values/>
	</parameter>
	<parameter name="validateat" type="String" required="false">
		<help><![CDATA[
			How to do the validation. For Flash format forms, onSubmit
			and onBlur are identical; validation is done on submit.
			For multiple values, use a comma-delimited list.
			For details, see the Usage section of the cfinput tag
			reference.
			Default: onSubmit
		]]></help>
		<values default="onSubmit">
			<value option="onSubmit"/>
			<value option="onServer"/>
			<value option="onBlur"/>
		</values>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message text to display if validation fails.
		]]></help>
		<values/>
	</parameter>
	<parameter name="range" type="String" required="false">
		<help><![CDATA[
			Minimum and maximum numeric allowed values. ColdFusion
			uses this attribute only if you specify range in the
			validate attribute.
			If you specify a single number or a single number a
			followed by a comma, it is treated as a minimum, with no
			maximum. If you specify a comma followed by a number,
			the maximum is set to the specified number, with no
			minimum.
		]]></help>
		<values/>
	</parameter>
	<parameter name="maxlength" type="Numeric" required="false">
		<help><![CDATA[
			The maximum length of text that can be entered.
			ColdFusion uses this attribute only if you specify
			maxlength in the validate attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="pattern" type="String" required="false">
		<help><![CDATA[
			JavaScript regular expression pattern to validate input.
			Omit leading and trailing slashes. ColdFusion uses this
			attribute only if you specify regex in the validate attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onvalidate" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to validate user input. The
			JavaScript DOM form object, input object, and input
			object value are passed to routine, which should return
			True if validation succeeds, False otherwise. If you specify
			this attribute, ColdFusion ignores the validate attribute.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to execute if validation fails.
		]]></help>
		<values/>
	</parameter>
	<parameter name="disabled" type="boolean" required="false">
		<help><![CDATA[
			Disables user input, making the control read-only. To
			disable input, specify disabled without an attribute, or
			disabled="true". To enable input, omit the attribute or
			specify disabled="false".
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Initial value to display in text control. You can specify an
			initial value as an attribute or in the tag body, but not in
			both places. If you specify the value as an attribute, you
			must put the closing cftextarea tag immediately after the
			opening cftextarea tag, with no spaces or line feeds between,
			or place a closing slash at the end of the opening cftextarea
			tag. For example:
			<cftextarea name="description" value="Enter a description." />
		]]></help>
		<values/>
	</parameter>
	<parameter name="bind" type="String" required="false">
		<help><![CDATA[
			Flash only: A Flex bind expression that populates the field with
			information from other form fields.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onkeyup" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user releases a keyboard key in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onkeydown" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash)
			ActionScript to run when the user presses a keyboard
			key in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onmouseup" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user presses a mouse button in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onmousedown" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the user releases a mouse button in the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) or ActionScript (Flash) to run
			when the control changes due to user action.
		]]></help>
		<values/>
	</parameter>
	<parameter name="onclick" type="String" required="false">
		<help><![CDATA[
			JavaScript (HTML/XML) to run when the user clicks the
			control. Not supported for Flash forms.
		]]></help>
		<values/>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether the control is enabled.
			A disabled control appears in light gray. The inverse of the
			diabled attribute.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether to
			show the control. Space that would be occupied by an
			invisible control is blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Flash only: Text to display when the mouse pointer hovers
			over the control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Flash only: The height of the control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Flash only: The width of the control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>basepath,bind,fontformats,fontnames,fontsizes,height,maxlength,message,onerror,onvalidate,pattern,range,readonly,required,richtext,skin,stylesxml,templatesxml,toolbar,toolbaronfocus,tooltip,type,validate,value,width</optional>
                </combination>
            </possiblecombinations>
</tag>
<tag  name="cftextinput" canHaveAttributeCollection="false" single="true" xmlstyle="false" compatibility="deprecated">
	<help><![CDATA[
		This tag is deprecated.
		
		Puts a single-line text entry box in a cfform tag and controls
		its display characteristics.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name for the cftextinput control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="value" type="String" required="false">
		<help><![CDATA[
			Initial value to display in text control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
			Yes: the user must enter or change text
			No
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="range" type="String" required="false">
		<help><![CDATA[
			Minimum-maximum value range, delimited by a comma.
			Valid only for numeric data.
		]]></help>
		<values/>
	</parameter>
	<parameter name="validate" type="String" required="false">
		<help><![CDATA[
			date: verifies format mm/dd/yy.
			eurodate: verifies date format dd/mm/yyyy.
			time: verifies time format hh:mm:ss.
			float: verifies floating point format.
			integer: verifies integer format.
			telephone: verifies telephone format ###-###-####. The
				separator can be a blank. Area code and exchange must
				begin with digit 1 - 9.
			zipcode: verifies, in U.S. formats only, 5- or 9-digit
				format #####-####. The separator can be a blank.
			creditcard: strips blanks and dashes; verifies number using
				mod10 algorithm. Number must have 13-16 digits.
			social_security_number: verifies format ###-##-####. The
				separator can be a blank.
			regular_expression: matches input against pattern
				attribute.
		]]></help>
		<values>
			<value option="date"/>
			<value option="eurodate"/>
			<value option="time"/>
			<value option="float"/>
			<value option="integer"/>
			<value option="telephone"/>
			<value option="zipcode"/>
			<value option="creditcard"/>
			<value option="social_security_number"/>
			<value option="regular_expression"/>
		</values>
	</parameter>
	<parameter name="onvalidate" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to validate user input. The form
			object, input object, and input object value are passed to
			routine, which should return True if validation succeeds,
			False otherwise. The validate attribute is ignored.
		]]></help>
		<values/>
	</parameter>
	<parameter name="pattern" type="Regex" required="false">
		<help><![CDATA[
			JavaScript regular expression pattern to validate input.
			Omit leading and trailing slashes
		]]></help>
		<values/>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message text to display if validation fails
		]]></help>
		<values/>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			Custom JavaScript function to execute if validation fails.
		]]></help>
		<values/>
	</parameter>
	<parameter name="size" type="Numeric" required="false">
		<help><![CDATA[
			Number of characters displayed before horizontal scroll
			bar displays.
		]]></help>
		<values/>
	</parameter>
	<parameter name="font" type="String" required="false">
		<help><![CDATA[
			Font name for data in tree control.
		]]></help>
		<values default="arial">
			<value option="arial"/>
			<value option="times"/>
			<value option="courier"/>
			<value option="arialunicodeMS"/>
		</values>
	</parameter>
	<parameter name="fontsize" type="Numeric" required="false">
		<help><![CDATA[
			Font size for text in tree control, in points.
		]]></help>
		<values/>
	</parameter>
	<parameter name="italic" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays tree control text in italics
			No: it does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="bold" type="boolean" required="false">
		<help><![CDATA[
			Yes: displays tree control text in bold
			No: it does not
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Tree control height, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Tree control width, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="vspace" type="Numeric" required="false">
		<help><![CDATA[
			Vertical margin above and below tree control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="hspace" type="Numeric" required="false">
		<help><![CDATA[
			Horizontal spacing to left and right of tree control, in pixels.
		]]></help>
		<values/>
	</parameter>
	<parameter name="align" type="String" required="false">
		<help><![CDATA[
			* top
			* left
			* bottom
			* baseline
			* texttop
			* absbottom
			* middle
			* absmiddle
			* right
		]]></help>
		<values>
			<value option="top"/>
			<value option="left"/>
			<value option="bottom"/>
			<value option="baseline"/>
			<value option="texttop"/>
			<value option="absbottom"/>
			<value option="middle"/>
			<value option="absmiddle"/>
			<value option="right"/>
		</values>
	</parameter>
	<parameter name="bgcolor" type="String" required="false">
		<help><![CDATA[
			Background color of control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="gray"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="textcolor" type="String" required="false">
		<help><![CDATA[
			Text color for control. For a hex value, use the form:
			textColor = "##xxxxxx", where x = 0-9 or A-F; use two hash
			signs or none.
		]]></help>
		<values>
			<value option="black"/>
			<value option="red"/>
			<value option="blue"/>
			<value option="magenta"/>
			<value option="cyan"/>
			<value option="orange"/>
			<value option="darkgray"/>
			<value option="pink"/>
			<value option="gray"/>
			<value option="white"/>
			<value option="lightgray"/>
			<value option="yellow"/>
		</values>
	</parameter>
	<parameter name="maxlength" type="Numeric" required="false">
		<help><![CDATA[
			The maximum length of text entered.
		]]></help>
		<values/>
	</parameter>
	<parameter name="notsupported" type="String" required="false">
		<help><![CDATA[
			Text to display if a page that contains a Java applet-based
			cfform control is opened by a browser that does not
			support Java or has Java support disabled.
			Default:
			"<b>Browser must support Java to <br>view ColdFusion Java
			Applets!</b>"
		]]></help>
		<values default="&lt;b&gt;Browser must support Java to &lt;br&gt;view ColdFusion Java Applets!&lt;/b&gt;"/>
	</parameter>
</tag>
<!--
	cfthrow
		type = "exception_type "
		message = "message"
		detail = "detail_description "
		errorCode = "error_code "
		extendedInfo = "additional_information"
	 	object = "java_except_object"
--><tag  name="cfthrow" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Throws a developer-specified exception, which can be caught
		with a cfcatch tag that has any of the following type attribute
		options:
                type = "custom_type"
                type = "Application"
                type = "Any"
	]]></help>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			* A custom type
			* Application
			Do not enter another predefined type; types are not
			generated by CFML applications. If you specify
			Application, you need not specify a type for cfcatch.
		]]></help>
		<values default="Custom">
			<value option="Custom"/>
			<value option="Application"/>
			<value option="Database"/>
			<value option="Template"/>
			<value option="Security"/>
			<value option="Object"/>
			<value option="MissingInclude"/>
			<value option="Expression"/>
			<value option="Lock"/>
			<value option="SearchEngine"/>
		</values>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message that describes exception event.
		]]></help>
		<values/>
	</parameter>
	<parameter name="detail" type="String" required="false">
		<help><![CDATA[
			Description of the event. CFML appends error position
			to description; server uses this parameter if an error is
			not caught by your code.
		]]></help>
		<values/>
	</parameter>
	<parameter name="errorcode" type="String" required="false">
		<help><![CDATA[
			A custom error code that you supply.
		]]></help>
		<values/>
	</parameter>
	<parameter name="extendedinfo" type="String" required="false">
		<help><![CDATA[
			A custom error code that you supply.
		]]></help>
		<values/>
	</parameter>
	<parameter name="object" type="Object" required="false">
		<help><![CDATA[
			Requires the value of the cfobject tag name attribute.

			Throws a Java exception from a CFML tag.

			This attribute is mutually exclusive with all other
			attributes of this tag.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cftimer
		label= "text"
		type = "inline" or "outline" or "comment" or "debug"
	CFML statement(s)
	/cftimer
--><tag  name="cftimer" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Displays execution time for a specified section of
		CFML code. ColdFusion MX displays the timing information
		along with any output produced by the timed code.
	]]></help>
	<parameter name="label" type="String" required="false">
		<help><![CDATA[
			Label to display with timing information.
			Default: " "
		]]></help>
		<values default=" "/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			- inline: displays timing information inline, following the
			  resulting HTML.
			- outline: displays timing information and also displays a line
			  around the output produced by the timed code. The browser
			  must support the FIELDSET tag to display the outline.
			- comment: displays timing information in an HTML comment
			  in the format <!-- label: elapsed-time ms -->. The default label
			  is cftimer.
			- debug: displays timing information in the debug output
			  under the heading CFTimer Times.
			Default: debug
		]]></help>
		<values default="debug">
			<value option="inline"/>
			<value option="outline"/>
			<value option="comment"/>
			<value option="debug"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cftrace
		abort = "boolean"
		category = "String"
		inline = "boolean"
		text = "String"
		type = "format"
		var = "variable_name"
	/cftrace
--><tag  name="cftrace" canHaveAttributeCollection="false" endtagrequired="false"  single="false" hybrid="true" xmlstyle="false">
	<help><![CDATA[
		Displays and logs debugging data about the state of an
		application at the time the cftrace tag executes. Tracks
		runtime logic flow, variable values, and execution time.
		Displays output at the end of the request or in the debugging
		section at the end of the request;

		CFML logs cftrace output to the file logs\cftrace.log, in
		the CFML installation directory.

		Note: To permit this tag to execute, you must enable debugging
		in the CFML Administrator. Optionally, to report trace
		summaries, enable the Trace section.
	]]></help>
	<parameter name="abort" type="boolean" required="false">
		<help><![CDATA[
			Calls cfabort tag when the tag is executed
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="category" type="String" required="false">
		<help><![CDATA[
			User-defined string for identifying trace groups
		]]></help>
		<values/>
	</parameter>
	<parameter name="inline" type="boolean" required="false">
		<help><![CDATA[
			Displays trace code in line on the page in the
			location of the cftrace tag, addition to the debugging
			information output.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="text" type="String" required="false">
		<help><![CDATA[
			User-defined string, which can include simple variable,
			but not complex variables such as arrays. Outputs to cflog
			text attribute
		]]></help>
		<values/>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
			Corresponds to the cflog type attribute; displays an
			appropriate icon.

			* Information
			* Warning
			* Error
			* Fatal Information
		]]></help>
		<values default="information">
			<value option="information"/>
			<value option="warning"/>
			<value option="error"/>
			<value option="fatal information"/>
		</values>
	</parameter>
	<parameter name="var" type="String" required="false">
		<help><![CDATA[
			The name of a simple or complex variable to display.

			Useful for displaying a temporary value, or a value that
			does not display on any CFM page.
		]]></help>
		<values/>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cftransaction
		action = "begin" or "commit" or "rollback"
		isolation = "read_uncommitted" or "read_committed" or "repeatable_read"
	/cftransaction
--><tag  name="cftransaction" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Instructs the database management system to treat multiple
		database operations as a single transaction. Provides database
		commit and rollback processing.
	]]></help>
	<parameter name="action" isswitchattribute="true"  type="String" required="false">
		<help><![CDATA[
			<ul>
			<li>begin: the start of the block of code to execute</li>
			<li>commit: commits a pending transaction</li>
			<li>rollback: rolls back a pending transaction</li>
			</ul>
		]]></help>
		<values default="begin">
			<value option="begin"/>
			<value option="commit"/>
			<value option="rollback"/>
		</values>
	</parameter>
	<parameter name="isolation" type="String" required="false">
		<help><![CDATA[
			ODBC lock type.
		]]></help>
		<values>
			<value option="read_uncommitted"/>
			<value option="read_committed"/>
			<value option="repeatable_read"/>
			<value option="serializable"/>
		</values>
	</parameter>
	<possiblecombinations>
                
                <combination switchvalue="commit">
                    <required/>
                    <optional>isolation</optional>
                </combination>
                <combination switchvalue="begin">
                    <required/>
                    <optional>action,isolation</optional>
                </combination>
                <combination switchvalue="rollback">
                    <required/>
                    <optional>isolation</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cftree name = "name"
		format="applet" "flash", xml, or "Object"
		required = "boolean"
		delimiter = "delimiter"
		completePath = "boolean"
		appendKey = "boolean"
		highlightHref = "boolean"
		onValidate = "script_name"
		message = "text"
		onError = "text"
		lookAndFeel = "motif" or "windows" or "metal"
		font = "font"
		fontSize = "size"
		italic = "boolean"
		bold = "boolean"
		height = "integer"
		width = "integer"
		vSpace = "integer"
		hSpace = "integer"
		align = "alignment"
		border = "boolean"
		hScroll = "boolean"
		vScroll = "boolean"
		style= "style specification"
		enabled = "boolean"
		visible = "boolean"
		tooltip = "Tip text"
		onChange = "ActionScript"
		onBlur = "ActionScript"
		onFocus = "ActionScript"
		notSupported = "text"
	...
	/cftree
--><tag  name="cftree" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Inserts a tree control in a form. Validates user selections.
		Used within a cftree tag block. You can use a CFML query
		to supply data to the tree.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Name for tree control.
		]]></help>
		<values/>
	</parameter>
	<parameter name="format" type="String" required="false">
		<help><![CDATA[
			- applet: displays the tree using a Java applet in the
			  browser,
			- flash: displays the tree using a Flash control
			- object: returns the tree as a ColdFusion structure with the
			  name specified by the name attribute, For details of the
			  structure contents, see "object format", below.
			- xml: Generates an XMLrepresentation of the tree.
			  In XML format forms, includes the generated XML in the
			  form. and puts the XML in a string variable with the name
			  specified by the name attribute.
			Default: applet
		]]></help>
		<values default="applet">
			<value option="applet"/>
			<value option="flash"/>
			<value option="object"/>
			<value option="xml"/>
		</values>
	</parameter>
	<parameter name="required" type="boolean" required="false">
		<help><![CDATA[
			- true: user must select an item in tree control
			- false: they do not
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
			Character to separate elements in form variable path.
			Default: \\
		]]></help>
		<values default="\\">
			<value option="\\"/>
			<value option=","/>
			<value option=";"/>
			<value option="|"/>
			<value option=":"/>
		</values>
	</parameter>
	<parameter name="completepath" type="boolean" required="false">
		<help><![CDATA[
			- true: start the Form.treename.path variable with the root
			  of the tree path when cftree is submitted.
			- false: omit the root level from the Form.treename.path
			  variable; the value starts with the first child node in the
			  tree.
			For the preserveData attribute of cfform to work with the
			tree, you must set this attribute to Yes.
			For tree items populated by a query, if you use the
			cftreeitem queryasroot attribute to specify a root name,
			that value is returned. If you do not specify a root name,
			ColdFusion returns the query name.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="appendkey" type="boolean" required="false">
		<help><![CDATA[
			- true: if you use cftreeitem href attributes, ColdFusion
			  appends a CFTREEITEMKEY query string variable with
			  the value of the selected tree item to the cfform action URL.
			- false: do not append the tree item value to the URL.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="highlighthref" type="boolean" required="false">
		<help><![CDATA[
			- true: highlights as a link the displayed value for any
			  cftreeitem tag that specifies a href attribute.
			- false: disables highlighting.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="onvalidate" type="String" required="false">
		<help><![CDATA[
			JavaScript function to validate user input. The form object,
			input object, and input object value are passed to the
			specified routine, which should return True if validation
			succeeds; False, otherwise.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="message" type="String" required="false">
		<help><![CDATA[
			Message to display if validation fails.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="onerror" type="String" required="false">
		<help><![CDATA[
			JavaScript function to execute if validation fails.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="lookandfeel" type="String" required="false">
		<help><![CDATA[
			- motif: renders slider in Motif style
			- windows: renders slider in Windows style
			- metal: renders slider in Java Swing style
			If platform does not support style option, tag defaults to
			platform default style.
			Default: windows
		]]></help>
		<values default="windows">
			<value option="motif"/>
			<value option="windows"/>
			<value option="metal"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="font" type="String" required="false">
		<help><![CDATA[
			Font name for data in tree control.
		]]></help>
		<values default="arial">
			<value option="arial"/>
			<value option="times"/>
			<value option="courier"/>
			<value option="arialunicodeMS"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	<parameter name="fontsize" type="Numeric" required="false">
		<help><![CDATA[
			Font size for text in tree control, in points.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="italic" type="boolean" required="false">
		<help><![CDATA[
			- true: displays tree control text in italics
			- false: it does not
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="bold" type="boolean" required="false">
		<help><![CDATA[
			- true: displays tree control text in bold
			- false: it does not
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="height" type="Numeric" required="false">
		<help><![CDATA[
			Tree control height, in pixels. If you omit this attribute in
			Flash format, Flash automatically sizes the tree.
			Default: 320 (applet only)
		]]></help>
		<values default="320"/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="width" type="Numeric" required="false">
		<help><![CDATA[
			Tree control width, in pixels. If you omit this attribute in
			Flash format, Flash automatically sizes the tree.
			Default: 200 (applet only)
		]]></help>
		<values default="200"/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="vspace" type="Numeric" required="false">
		<help><![CDATA[
			Vertical margin above and below tree control, in pixels.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="hspace" type="Numeric" required="false">
		<help><![CDATA[
			Horizontal spacing to left and right of tree control, in pixels.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="align" type="String" required="false">
		<help><![CDATA[
			Alignment of the tree control applet object.
		]]></help>
		<values>
			<value option="top"/>
			<value option="left"/>
			<value option="bottom"/>
			<value option="baseline"/>
			<value option="texttop"/>
			<value option="absbottom"/>
			<value option="middle"/>
			<value option="absmiddle"/>
			<value option="right"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="border" type="boolean" required="false">
		<help><![CDATA[
			- true: display a border around the tree control.
			- false: no border
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="hscroll" type="boolean" required="false">
		<help><![CDATA[
			- true: permits horizontal scrolling
			- false: no horizontal scrolling
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="vscroll" type="boolean" required="false">
		<help><![CDATA[
			- true: permits vertical scrolling
			- false: no vertical scrolling
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
			<selectedValue attributeName="format" required="false" value="Object"/>
		</triggers>
	</parameter>
	<parameter name="style" type="String" required="false">
		<help><![CDATA[
			Flash only: Must be a style specification in CSS format, with the same
			syntax and contents as used in Macromedia Flex for the
			corresponding Flash element.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="enabled" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether the
			control is enabled. A disabled control appears in light gray.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="visible" type="boolean" required="false">
		<help><![CDATA[
			Flash only: Boolean value specifying whether to
			show the control. Space that would be occupied by an
			invisible control is blank.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="tooltip" type="String" required="false">
		<help><![CDATA[
			Flash only: Text to display when the mouse pointer
			hovers over the control.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="onchange" type="String" required="false">
		<help><![CDATA[
			Flash only: ActionScript to run when the control changes due to user action.
			If you specify an onChange event handler, the Form scope of
			the ColdFusion action page does not automatically get
			information about selected items. The ActionScript onChange
			event handler must handle all changes and selections.
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="onblur" type="String" required="false">
		<help><![CDATA[
			Flash only: ActionScript that runs when the calendar loses focus.
			(Added in 7.0.1)
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="onfocus" type="String" required="false">
		<help><![CDATA[
			Flash only: ActionScript that runs when the calendar loses focus.
			(Added in 7.0.1)
		]]></help>
		<values/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="flash"/>
		</triggers>
	</parameter>
	<parameter name="notsupported" type="String" required="false">
		<help><![CDATA[
			Text to display if a page that contains a Java applet-based
			cfform control is opened by a browser that does not
			support Java or has Java support disabled.
			Default:
			"<b>Browser must support Java to <br>view ColdFusion Java
			Applets!</b>"
		]]></help>
		<values default="&lt;b&gt;Browser must support Java to &lt;br&gt;view ColdFusion Java Applets!&lt;/b&gt;"/>
		<triggers>
			<selectedValue attributeName="format" required="false" value="applet"/>
		</triggers>
	</parameter>
	 <possiblecombinations>
                <combination attributename="name">
                    <required>name</required>
                    <optional>align,appendkey,bold,border,cache,completepath,delimiter,enabled,font,fontsize,format,height,highlighthref,hscroll,hspace,italic,label,lookandfeel,message,notsupported,onblur,onchange,onerror,onfocus,onvalidate,required,style,tooltip,value,visible,vscroll,vspace,width</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cftreeitem
		value = "text"
		display = "text"
		parent = "parent_name"
		img = "filename"
		imgopen = "filename"
		href = "URL"
		target = "URL_target"
		query = "queryname"
		queryAsRoot = "boolean"
		expand = "boolean"
--><tag  name="cftreeitem" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Populates a form tree control, created with the cftree tag,
		with elements. To display icons, you can use the img values
		that CFML provides, or reference your own icons.
	]]></help>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			Value passed when cfform is submitted. When populating a
			tree with data from a cfquery, specify columns in a
			delimited list. Example: value = "dept_id,emp_id"
		]]></help>
		<values/>
	</parameter>
	<parameter name="display" type="String" required="false">
		<help><![CDATA[
			Tree item label. When populating a tree with data from a
			query, specify names in a delimited list. Example:
			display = "dept_name,emp_name"
		]]></help>
		<values/>
	</parameter>
	<parameter name="parent" type="String" required="false">
		<help><![CDATA[
			Value for tree item parent.
		]]></help>
		<values/>
	</parameter>
	<parameter name="img" type="String" required="false">
		<help><![CDATA[
			Image name, filename, or file URL for tree item icon.

			You can specify a custom image. To do so, include path and
			file extension; for example:

			img = "../images/page1.gif"

			To specify more than one image in a tree, or an image at
			the second or subsequent level, use commas to separate
			names, corresponding to level; for example:

			img = "folder,document"
			img = ",document" (example of second level)
		]]></help>
		<values>
			<value option="cd"/>
			<value option="computer"/>
			<value option="document"/>
			<value option="element"/>
			<value option="folder"/>
			<value option="floppy"/>
			<value option="fixed"/>
			<value option="remote"/>
		</values>
	</parameter>
	<parameter name="imgopen" type="String" required="false">
		<help><![CDATA[
			Icon displayed with open tree item. You can specify icon
			filename with a relative path. You can use a CFML
			image.
		]]></help>
		<values/>
	</parameter>
	<parameter name="href" type="String" required="false">
		<help><![CDATA[
			URL to associate with tree item or query column for a tree
			that is populated from a query. If href is a query column,
			its value is the value populated by query. If href is not
			recognized as a query column, it is assumed that its text
			is an HTML href.

			When populating a tree with data from a query, HREFs can be
			specified in delimited list; for example:

			href = "http://dept_svr,http://emp_svr"
		]]></help>
		<values/>
	</parameter>
	<parameter name="target" type="String" required="false">
		<help><![CDATA[
			Target attribute of href URL. When populating a tree with
			data from a query, specify target in delimited list:

			target = "FRAME_BODY,_blank"
		]]></help>
		<values/>
	</parameter>
	<parameter name="query" type="String" required="false">
		<help><![CDATA[
			Query name to generate data for the treeitem.
		]]></help>
		<values/>
	</parameter>
	<parameter name="queryAsRoot" type="String" required="false">
		<help><![CDATA[
			Defines query as the root level. This avoids having to
			create another parent cftreeitem.

				* Yes
				* No
				* String to use as the root name
			If you do not specify a root name, CFML returns the
			query name as the root.
		]]></help>
		<values/>
	</parameter>
	<parameter name="expand" type="boolean" required="false">
		<help><![CDATA[
			Yes: expands tree to show tree item children
			No: keeps tree item collapsed
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations/>
</tag>
<!--
	cftry
	   Code that might throw an exception
	   One or more cfcatch blocks
	/cftry
--><tag  name="cftry" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Used with one or more cfcatch tags. Together, they catch and
		process exceptions in CFML pages. Exceptions are events
		that disrupt the normal flow of instructions in a CFML
		page, such as failed database operations, missing include
		files, and developer-specified events.
	]]></help>
</tag>
<!--
	cfupdate
		dataSource = "ds_name"
		tableName = "table_name"
		tableOwner = "name"
		tableQualifier = "qualifier"
		username = "username"
		password = "password"
		formFields = "field_names"
--><tag  name="cfupdate" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Updates records in a data source from data in a CFML form
		or form Scope.
	]]></help>
	<parameter name="datasource" type="String" required="true">
		<help><![CDATA[
			Name of the data source that contains the table
		]]></help>
		<values/>
	</parameter>
	<parameter name="tablename" type="String" required="true">
		<help><![CDATA[
			Name of table to update.
				For ORACLE drivers, must be uppercase.
				For Sybase driver: case-sensitive; must be in same case
				as used when the table was created
		]]></help>
		<values/>
	</parameter>
	<parameter name="tableowner" type="String" required="false">
		<help><![CDATA[
			For data sources that support table ownership (for example,
			SQL Server, Oracle, Sybase SQL Anywhere), the table owner.
		]]></help>
		<values/>
	</parameter>
	<parameter name="tablequalifier" type="String" required="false">
		<help><![CDATA[
			For data sources that support table qualifiers. The purpose
			of table qualifiers is as follows:
				SQL Server and Oracle: name of database that contains
				table
				Intersolv dBASE driver: directory of DBF files
		]]></help>
		<values/>
	</parameter>
	<parameter name="username" type="String" required="false">
		<help><![CDATA[
			Overrides username value specified in ODBC setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="password" type="String" required="false">
		<help><![CDATA[
			Overrides password value specified in ODBC setup.
		]]></help>
		<values/>
	</parameter>
	<parameter name="formfields" type="String" required="false">
		<help><![CDATA[
			Comma-delimited list of form fields to update.

			If a form field is not matched by a column name in the
			database, CFML throws an error.

			The formFields lies must include the database table primary
			key field, which must be present in the form. It can be
			hidden.
		]]></help>
		<values/>
	</parameter>
	 <possiblecombinations>
                <combination attributename="tablename">
                    <required>tablename</required>
                    <optional>connectstring,datasource,formfields,password,provider,providerdsn,tableowner,tablequalifier,username</optional>
                </combination>
                <combination attributename="tablename">
                    <required>datasource,tablename</required>
                    <optional>connectstring,formfields,password,provider,providerdsn,tableowner,tablequalifier,username</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfwddx
		action = "action"
		input = "inputdata"
		output = "resultvariablename"
		topLevelVariable = "toplevelvariablenameforjavascript"
		useTimeZoneInfo = "boolean"
		validate = "boolean"
--><tag  name="cfwddx" canHaveAttributeCollection="false" endtagrequired="false"  single="true" xmlstyle="false">
	<help><![CDATA[
		Serializes and deserializes CFML data structures to the
		XML-based WDDX format. The WDDX is an XML vocabulary for
		describing complex data structures in a standard, generic way.
		Implementing it lets you use the HTTP protocol to such
		information among application server platforms, application
		servers, and browsers.

		This tag generates JavaScript statements to instantiate
		JavaScript objects equivalent to the contents of a WDDX packet
		or CFML data structure. Interoperates with Unicode.
	]]></help>
	<return type="Any" parameter="output"/>
	<parameter name="action" isswitchattribute="true"  type="String" required="true">
		<help><![CDATA[
			cfml2wddx: serialize CFML to WDDX
			wddx2cfml: deserialize WDDX to CFML
			cfml2js: serialize CFML to JavaScript
			wddx2js: deserialize WDDX to JavaScript
		]]></help>
		<values>
			<value option="cfml2wddx"/>
			<value option="wddx2cfml"/>
			<value option="cfml2js"/>
			<value option="wddx2js"/>
		</values>
	</parameter>
	<parameter name="input" type="String" required="true">
		<help><![CDATA[
			A value to process
		]]></help>
		<values/>
	</parameter>
	<parameter name="output" type="variableName" required="false">
		<help><![CDATA[
			Name of variable for output. If action = "WDDX2JS" or
			"CFML2JS", and this attribute is omitted, result is output
			in HTML stream.
		]]></help>
		<values/>
	</parameter>
	<parameter name="toplevelvariable" returnVarType="variablename" type="String" required="false">
		<help><![CDATA[
			Name of top-level JavaScript object created by
			deserialization. The object is an instance of the
			WddxRecordset object.
		]]></help>
		<values/>
	</parameter>
	<parameter name="usetimezoneinfo" type="boolean" required="false">
		<help><![CDATA[
			Whether to output time-zone information when serializing
			CFML to WDDX.
				- Yes: the hour-minute offset, represented in ISO8601
					format, is output.
				- No: the local time is output.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="validate" type="boolean" required="false">
		<help><![CDATA[
			Applies if action = "wddx2cfml" or "wddx2js".
				- Yes: validates WDDX input with an XML parser using
					WDDX DTD. If parser processes input without error,
					packet is deserialized. Otherwise, an error is
					thrown.
				- No: no input validation
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<possiblecombinations>
                <combination switchvalue="wddx2cfml">
                    <required>input,output</required>
                    <optional>validate</optional>
                </combination>
                <combination switchvalue="cfml2js">
                    <required>input,toplevelvariable</required>
                    <optional>output</optional>
                </combination>
                <combination switchvalue="wddx2js">
                    <required>input,toplevelvariable</required>
                    <optional>output,validate</optional>
                </combination>
                <combination switchvalue="cfml2wddx">
                    <required>input</required>
                    <optional>output,usetimezoneinfo</optional>
                </combination>
            </possiblecombinations>
</tag>
<!--
	cfxml
		variable="xmlVarName"
		caseSensitive="boolean"
	/cfxml
--><tag  name="cfxml" canHaveAttributeCollection="false" endtagrequired="true"  single="false" xmlstyle="false">
	<help><![CDATA[
		Creates a CFML XML document object that contains the
		markup in the tag body. This tag can include XML and CFML tags.
		CFML processes the CFML code in the tag body, then assigns
		the resulting text to an XML document object variable.
	]]></help>
	<return type="xml" parameter="variable"/>
	<parameter name="variable" type="variableName" required="true">
		<help><![CDATA[
			Name of an xml variable
		]]></help>
		<values/>
	</parameter>
	<parameter name="casesensitive" type="boolean" required="false">
		<help><![CDATA[
			Maintains the case of document elements and attributes
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</tag>
	</tags>

	<functions>
<!--
	Numeric Abs(number)
--><function  name="abs" returns="Numeric">
	<help><![CDATA[
		Absolute-value function. The absolute value of a number is
		the number without its sign.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric ACos(number)
--><function  name="acos" returns="Numeric">
	<help><![CDATA[
		Returns the angle whose cosine is the value passed as the argument.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
			The value to be converted into an angle. Must be between -1 and 1.
		]]></help>
	</parameter>
</function>
<!--
	boolean ArrayAppend(array, value)
--><function  name="arrayappend" returns="boolean">
	<help><![CDATA[
		Appends an array element to an array.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
			The array to which the element should be appended.
		]]></help>
	</parameter>
	<parameter name="value" type="Any" required="true">
		<help><![CDATA[
			The element to append. Can be any type.
		]]></help>
	</parameter>
</function>
<!--
	Numeric ArrayAvg(array)
--><function  name="arrayavg" returns="Numeric">
	<help><![CDATA[
		Calculates the average of the values in an array.
		All elements in the array must contain values that can be
		automatically converted to numeric.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean ArrayClear(array)
--><function  name="arrayclear" returns="boolean">
	<help><![CDATA[
		Removes all elements from an array.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean ArrayDeleteAt(array, position)
--><function  name="arraydeleteat" returns="boolean">
	<help><![CDATA[
		Deletes an element from an array and resizes the array
		so that the deleted element doesn't leave a gap.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
			The array that the element will be deleted from.
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
			The numeric position of the element. Remember that
			ColdFusion arrays start at 1 not 0.
		]]></help>
	</parameter>
</function>
<!--
	boolean ArrayInsertAt(array, position, value)
--><function  name="arrayinsertat" returns="boolean">
	<help><![CDATA[
		Inserts a value at the specified position in the array. If
		the element is inserted before the end of the array, ColdFusion
		shifts the positions of all elements with a higher index to make room.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
			The array which will have the new element inserted.
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
			The numerical index in the array where the new element will be inserted.
			Must be less than or equal to the length of the array.
			Remember ColdFusion arrays start at 1 not 0.
		]]></help>
	</parameter>
	<parameter name="value" type="Any" required="true">
		<help><![CDATA[
			The new element to insert.
		]]></help>
	</parameter>
</function>
<!--
	boolean ArrayIsEmpty(array)
--><function  name="arrayisempty" returns="boolean">
	<help><![CDATA[
		Determines whether an array is empty. Equivalent to arrayLen().
		Calling this function on an array with 10 undefined elements
		will return false.
		CFML MX: this function can be used on XML objects.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric ArrayLen(array)
--><function  name="arraylen" returns="Numeric">
	<help><![CDATA[
		Determines the number of elements in an array.
		CFML MX: this function can be used on child XML objects.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric ArrayMax(array)
--><function  name="arraymax" returns="Numeric">
	<help><![CDATA[
		Returns the largest numeric value in an array. If the array
		parameter value is an empty array, returns zero.
		All elements must contain values that can be automatically
		converted to numeric values.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric ArrayMin(array)
--><function  name="arraymin" returns="Numeric">
	<help><![CDATA[
		Returns the smallest numeric value in an array. If the array
		parameter value is an empty array, returns zero.
		All elements must contain values that can be automatically
		converted to numeric values.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Array ArrayNew(dimension)
--><function  name="arraynew" returns="Array">
	<help><![CDATA[
		Creates an array of 1-3 dimensions. Index array elements
		with square brackets: [ ].
		CFML arrays expand dynamically as data is added.
	]]></help>
	<parameter name="dimension" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values default="1">
			<value option="1"/>
		</values>
	</parameter>
</function>
<!--
	boolean ArrayPrepend(array, value)
--><function  name="arrayprepend" returns="boolean">
	<help><![CDATA[
		Inserts an array element at the beginning of an array
		and shifts the positions of the existing elements to
		make room.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean ArrayResize(array, minimum_size)
--><function  name="arrayresize" returns="boolean">
	<help><![CDATA[
		Resets an array to a specified minimum number of elements.
		This can improve performance, if used to size an array to its
		expected maximum. For more than 500 elements, use ArrayResize
		immediately after using the ArrayNew tag.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="size" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean ArraySet(array, start_pos, end_pos, value)
--><function  name="arrayset" returns="boolean">
	<help><![CDATA[
		In a one-dimensional array, sets the elements in a specified
		index range to a value. Useful for initializing an array after
		a call to ArrayNew.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start_pos" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="end_pos" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean ArraySort(array, sort_type [, sort_order ])
--><function  name="arraysort" returns="boolean">
	<help><![CDATA[
		Sorts array elements numerically or alphanumerically.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
			Name of an array
		]]></help>
	</parameter>
	<parameter name="sort_type" type="String" required="true">
		<help><![CDATA[
			numeric: sorts numbers
			text: sorts text alphabetically, taking case into account
			(also known as case sensitive). All letters of one case
			precede the first letter of the other case:
				- aabzABZ, if sort_order = "asc" (ascending sort)
				- ZBAzbaa, if sort_order = "desc" (descending sort)

			textnocase: sorts text alphabetically, without regard to
			case (also known as case-insensitive). A letter in varying
			cases precedes the next letter:
 						- aAaBbBzzZ, in an ascending sort; preserves original
 							intra-letter order
				- ZzzBbBaAa, in a descending sort; reverses original
					intra-letter order
		]]></help>
		<values>
			<value option="&quot;numeric&quot;"/>
			<value option="&quot;text&quot;"/>
			<value option="&quot;textnocase&quot;"/>
		</values>
	</parameter>
	<parameter name="sort_order" type="String" required="false">
		<help><![CDATA[
			asc: ascending sort order. Default.
 						- aabzABZ or aAaBbBzzZ, depending on value of sort_type,
 							for letters
				- from smaller to larger, for numbers

			desc: descending sort order.
				- ZBAzbaa or ZzzBbBaAa, depending on value of sort_type,
					for letters
				- from larger to smaller, for numbers
		]]></help>
		<values default="&quot;asc&quot;">
			<value option="&quot;asc&quot;"/>
			<value option="&quot;desc&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ArraySum(array)
--><function  name="arraysum" returns="Numeric">
	<help><![CDATA[
		The sum of values in an array. If the array parameter value is
		an empty array, returns zero.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean ArraySwap(array, position1, position2)
--><function  name="arrayswap" returns="boolean">
	<help><![CDATA[
		Swaps array values of an array at specified positions. This
		function is more efficient than multiple cfset tags
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String ArrayToList(array [, delimiter ])
--><function  name="arraytolist" returns="String">
	<help><![CDATA[
		Converts a one-dimensional array to a list.
	]]></help>
	<parameter name="array" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;_&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;:&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Asc(string)
--><function  name="asc" returns="Numeric">
	<help><![CDATA[
		Determines the value of a character.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric ASin(number)
--><function  name="asin" returns="Numeric">
	<help><![CDATA[
		Determines the arcsine of a number. The arcsine is the angle
		whose sine is number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Atn(number)
--><function  name="atn" returns="Numeric">
	<help><![CDATA[
		Arctangent function. The arctangent is the angle whose tangent
		is number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Binary BinaryDecode(string, binaryencoding)
--><function  name="binarydecode" returns="Binary">
	<help><![CDATA[
		Converts a string to a binary object. Used to convert
		binary data that has been encoded into string format
		back into binary data.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string containing encoded binary data.
		]]></help>
	</parameter>
	<parameter name="binaryencoding" type="String" required="true">
		<help><![CDATA[
			A string specifying the algorithm used to encode the original
			binary data into a string; must be one of the following:
			- hex: characters 0-9 and A-F represent the hexadecimal value
			  of each byte; for example, 3A.
			- UU: data is encoded using the UNIX UUencode algorithm.
			- base64: data is encoded using the Base64 algorithm.
		]]></help>
		<values>
			<value option="&quot;hex&quot;"/>
			<value option="&quot;uu&quot;"/>
			<value option="&quot;base64&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Binary BinaryEncode(binarydata, encoding)
--><function  name="binaryencode" returns="String">
	<help><![CDATA[
		Converts binary data to a string.
	]]></help>
	<parameter name="binarydata" type="Binary" required="true">
		<help><![CDATA[
			A string containing encoded binary data.
		]]></help>
	</parameter>
	<parameter name="encoding" type="String" required="true">
		<help><![CDATA[
			A string specifying the encoding method to use to represent
			the data; one of the following:
			- hex: use characters 0-9 and A-F represent the hexadecimal value
			  of each byte; for example, 3A.
			- UU: use the UNIX UUencode algorithm to convert the data.
			- base64: use the Base64 algorithm to convert the data.
		]]></help>
		<values>
			<value option="&quot;hex&quot;"/>
			<value option="&quot;uu&quot;"/>
			<value option="&quot;base64&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric BitAnd(number1, number2)
--><function  name="bitand" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise logical AND operation.
	]]></help>
	<parameter name="number1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitMaskClear(number, start, length)
--><function  name="bitmaskclear" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise mask clear operation.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="length" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitMaskRead(number, start, length)
--><function  name="bitmaskread" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise mask read operation.
		Returns an integer, created from length bits of number,
		beginning at start.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="length" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitMaskSet(number, mask, start, length)
--><function  name="bitmaskset" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise mask set operation.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="mask" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="length" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitNot(number)
--><function  name="bitnot" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise logical NOT operation.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Bitor(number1, number2)
--><function  name="bitor" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise logical OR operation.
	]]></help>
	<parameter name="number1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitSHLN(number, count)
--><function  name="bitshln" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise shift-left, no-rotation operation.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitSHRN(number, count)
--><function  name="bitshrn" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise shift-right, no-rotation operation.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric BitXor(number1, number2)
--><function  name="bitxor" returns="Numeric">
	<help><![CDATA[
		Performs a bitwise logical XOR operation.
	]]></help>
	<parameter name="number1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Ceiling(number)
--><function  name="ceiling" returns="Numeric">
	<help><![CDATA[
		Determines the closest integer that is greater than a
		specified number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Binary CharsetDecode(string, encoding)
--><function  name="charsetdecode" returns="Binary">
	<help><![CDATA[
		Converts as string to a binary representation.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string containing data to encode in binary format.
		]]></help>
	</parameter>
	<parameter name="encoding" type="String" required="true">
		<help><![CDATA[
			A string specifying encoding of the input data.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jpv"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String CharsetEncode(binaryobject, encoding)
--><function  name="charsetencode" returns="Binary">
	<help><![CDATA[
		Uses the specified encoding to convert binary data to a string.
	]]></help>
	<parameter name="binaryobject" type="Binary" required="true">
		<help><![CDATA[
			A variable containing binary data to decode into text.
		]]></help>
	</parameter>
	<parameter name="encoding" type="String" required="true">
		<help><![CDATA[
			The character encoding that was used to encode the string into binary format.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jpv"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Character Chr(number)
--><function  name="chr" returns="char">
	<help><![CDATA[
		Converts a numeric value to a UCS-2 character.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Cjustify(string, length)
--><function  name="cjustify" returns="String">
	<help><![CDATA[
		Centers a string in a field length.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="length" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Compare(string1, string2)
--><function  name="compare" returns="Numeric">
	<help><![CDATA[
		Performs a case-sensitive comparison of two strings.
			-1, if string1 is less than string2
			0, if string1 is equal to string2
			1, if string1 is greater than string2
	]]></help>
	<parameter name="string1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="string2" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric CompareNoCase(string1, string2)
--><function  name="comparenocase" returns="Numeric">
	<help><![CDATA[
		Performs a case-insensitive comparison of two strings.
        An indicator of the difference:
			A negative number, if string1 is less than string2
			0, if string1 is equal to string2
			A positive number, if string1 is greater than string2
	]]></help>
	<parameter name="string1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="string2" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Cos(number)
--><function  name="cos" returns="Numeric">
	<help><![CDATA[
		Calculates the cosine of an angle that is entered
		in radians.
		A number; the cosine of the angle.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	DateTime CreateDate(year, month, day)
--><function  name="createdate" returns="DateTime">
	<help><![CDATA[
		Creates a date/time object
	]]></help>
	<parameter name="year" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="year(now())"/>
		</values>
	</parameter>
	<parameter name="month" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="month(now())"/>
		</values>
	</parameter>
	<parameter name="day" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="day(now())"/>
		</values>
	</parameter>
</function>
<!--
	DateTime CreateDateTime(year, month, day, hour, minute, second)
--><function  name="createdatetime" returns="DateTime">
	<help><![CDATA[
		Creates a date-time object.
	]]></help>
	<parameter name="year" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="year(now())"/>
		</values>
	</parameter>
	<parameter name="month" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="month(now())"/>
		</values>
	</parameter>
	<parameter name="day" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="day(now())"/>
		</values>
	</parameter>
	<parameter name="hour" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="hour(now())"/>
		</values>
	</parameter>
	<parameter name="minute" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="minute(now())"/>
		</values>
	</parameter>
	<parameter name="second" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="second(now())"/>
		</values>
	</parameter>
</function>
<!--
	CreateObject(type, class, context, serverName)
	CreateObject(type, component-name)
	CreateObject(type, context, class, locale)
	CreateObject(type, class)
	CreateObject(type, urltowsdl [, portname])
--><function  name="createobject" returns="Object">
<help><![CDATA[
		The CreateObject function takes different arguments depending on the value of the first argument:

		CreateObject('com', class, context, serverName)
		CreateObject('component', component-name)
		CreateObject('corba', context, class, locale)
		CreateObject('java', class)
		CreateObject('webservice', urltowsdl, [, portname])
	]]></help>

	<parameter name="type" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;component&quot;"/>
			<value option="&quot;corba&quot;"/>
			<value option="&quot;com&quot;"/>
			<value option="&quot;java&quot;"/>
			<value option="&quot;webservice&quot;"/>
		</values>
	</parameter>
	<parameter name="context" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;corba&quot;" required="true" index="1"/>
			<selectedValue attributeName="type" value="&quot;com&quot;" required="true" index="2"/>
		</triggers>
	</parameter>
	<parameter name="class" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;com&quot;" required="true" index="1"/>
			<selectedValue attributeName="type" value="&quot;corba&quot;" required="true" index="2"/>
			<selectedValue attributeName="type" value="&quot;java&quot;" required="true" index="1"/>
		</triggers>
	</parameter>
	<parameter name="locale" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;corba&quot;" required="true" index="3"/>
		</triggers>
	</parameter>
	<parameter name="servername" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;com&quot;" required="true" index="3"/>
		</triggers>
	</parameter>
	<parameter name="component_name" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;component&quot;" required="true" index="1"/>
		</triggers>
	</parameter>
	<parameter name="urltowsdl" type="String" required="true">
		<help><![CDATA[
			WSDL file URL; location of web service
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;webservice&quot;" required="true" index="1"/>
		</triggers>
	</parameter>
	<parameter name="portname" type="String" required="false">
		<help><![CDATA[
			The port name for the web service. This value is case-sensitive
			and corresponds to the port element's name attribute under the
			service element.
			Specify this parameter if the web service contains multiple ports.
			If no port name is specified, ColdFusion uses the first port found
			in the WSDL.
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;webservice&quot;" required="true" index="1"/>
		</triggers>
	</parameter>
</function>
<!--
	ODBCDate CreateODBCDate(date)
--><function  name="createodbcdate" returns="ODBCDate">
	<help><![CDATA[
		Creates an ODBC date object.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	ODBCDateTime CreateODBCDateTime(date)
--><function  name="createodbcdatetime" returns="ODBCDateTime">
	<help><![CDATA[
		Creates an ODBC date-time object.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	ODBCTime CreateODBCTime(date)
--><function  name="createodbctime" returns="ODBCTime">
	<help><![CDATA[
		Creates an ODBC time object.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	DateTime CreateTime(hour, minute, second)
--><function  name="createtime" returns="DateTime">
	<help><![CDATA[
		Creates a time variable.
	]]></help>
	<parameter name="hour" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="hour(now())"/>
		</values>
	</parameter>
	<parameter name="minute" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="minute(now())"/>
		</values>
	</parameter>
	<parameter name="second" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="second(now())"/>
		</values>
	</parameter>
</function>
<!--
	DateTime CreateTimeSpan(days, hours, minutes, seconds)
--><function  name="createtimespan" returns="DateTime">
	<help><![CDATA[
		Creates a date/time object that defines a time period. You
		can add or subtract it from other date/time objects and use
		it with the cachedWithin attribute of cfquery.
	]]></help>
	<parameter name="days" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="hours" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="minutes" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="seconds" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	UUID CreateUUID()
--><function  name="createuuid" returns="UUID">
	<help><![CDATA[
		Creates a Universally Unique Identifier (UUID). A UUID is a
		35-character string representation of a unique 128-bit integer
		xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxxxxxx : x is a hexadecimal digit
	]]></help>
</function>
<!--
	DateTime DateAdd("datepart", number, "date")
--><function  name="dateadd" returns="DateTime">
	<help><![CDATA[
		Adds units of time to a date.
		[datepart - quicky]
		yyyy: Year; q: Quarter; m: Month; y: Day of year; d: Day
		w: Weekday; ww: Week; h: Hour; n: Minute; s: Second;
		l: Millisecond
	]]></help>
	<parameter name="datepart" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;yyyy&quot;"/>
			<value option="&quot;q&quot;"/>
			<value option="&quot;m&quot;"/>
			<value option="&quot;y&quot;"/>
			<value option="&quot;d&quot;"/>
			<value option="&quot;w&quot;"/>
			<value option="&quot;ww&quot;"/>
			<value option="&quot;h&quot;"/>
			<value option="&quot;n&quot;"/>
			<value option="&quot;s&quot;"/>
			<value option="&quot;l&quot;"/>
		</values>
	</parameter>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric DateCompare("date1", "date2" [, "datePart"])
--><function  name="datecompare" returns="Numeric">
	<help><![CDATA[
		Performs a full date/time comparison of two dates.
			-1, if date1 is less than date2
			0, if date1 is equal to date2
			1, if date1 is greater than date2
		[datepart - quicky]
		yyyy: Year; q: Quarter; m: Month; y: Day of year; d: Day
		w: Weekday; ww: Week; h: Hour; n: Minute; s: Second;
		l: Millisecond
	]]></help>
	<parameter name="date1" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="date2" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="datePart" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;yyyy&quot;"/>
			<value option="&quot;q&quot;"/>
			<value option="&quot;m&quot;"/>
			<value option="&quot;y&quot;"/>
			<value option="&quot;d&quot;"/>
			<value option="&quot;w&quot;"/>
			<value option="&quot;ww&quot;"/>
			<value option="&quot;h&quot;"/>
			<value option="&quot;n&quot;"/>
			<value option="&quot;s&quot;"/>
			<value option="&quot;l&quot;"/>
		</values>
	</parameter>
</function>
<!--
	DateTime DateConvert("conversion-type", "date")
--><function  name="dateconvert" returns="DateTime">
	<help><![CDATA[
		Converts local time to Coordinated Universal Time (UTC), or UTC
		to local time. The function uses the daylight savings settings
		in the executing computer to compute daylight savings time, if
		required.
		[type - quicky]
			local2Utc: Converts local time to UTC time.
			utc2Local: Converts UTC time to local time
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;local2Utc&quot;"/>
			<value option="&quot;utc2Local&quot;"/>
		</values>
	</parameter>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric DateDiff("datepart", "date1", "date2")
--><function  name="datediff" returns="Numeric">
	<help><![CDATA[
		Determines the integer number of units by which date1 is less
		than date2.
		[datepart - quicky]
		yyyy: Year; q: Quarter; m: Month; y: Day of year; d: Day
		w: Weekday; ww: Week; h: Hour; n: Minute; s: Second;
		l: Millisecond
	]]></help>
	<parameter name="datepart" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;yyyy&quot;"/>
			<value option="&quot;q&quot;"/>
			<value option="&quot;m&quot;"/>
			<value option="&quot;y&quot;"/>
			<value option="&quot;d&quot;"/>
			<value option="&quot;w&quot;"/>
			<value option="&quot;ww&quot;"/>
			<value option="&quot;h&quot;"/>
			<value option="&quot;n&quot;"/>
			<value option="&quot;s&quot;"/>
			<value option="&quot;l&quot;"/>
		</values>
	</parameter>
	<parameter name="date1" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="date2" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String DateFormat("date" [, "mask" ])
--><function  name="dateformat" returns="String">
	<help><![CDATA[
		Formats a date value using U.S. date formats. For
		international date support, use LSDateFormat.
		[mask - quicky]
		d,dd,ddd,dddd: Day of month / week
		m,mm,mmm,mmmm: Month; y,yy,yyyy: Year; gg: Period/era string
		short / medium / long / full
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;short&quot;"/>
			<value option="&quot;medium&quot;"/>
			<value option="&quot;long&quot;"/>
			<value option="&quot;full&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric DatePart("datepart", "date")
--><function  name="datepart" returns="Numeric">
	<help><![CDATA[
		Extracts a part from a date value as a numeric.
		[datepart - quicky]
		yyyy: Year; q: Quarter; m: Month; y: Day of year; d: Day
		w: Weekday; ww: Week; h: Hour; n: Minute; s: Second;
		l: Millisecond
	]]></help>
	<parameter name="datepart" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;yyyy&quot;"/>
			<value option="&quot;q&quot;"/>
			<value option="&quot;m&quot;"/>
			<value option="&quot;y&quot;"/>
			<value option="&quot;d&quot;"/>
			<value option="&quot;w&quot;"/>
			<value option="&quot;ww&quot;"/>
			<value option="&quot;h&quot;"/>
			<value option="&quot;n&quot;"/>
			<value option="&quot;s&quot;"/>
			<value option="&quot;l&quot;"/>
		</values>
	</parameter>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Day(date)
--><function  name="day" returns="Numeric">
	<help><![CDATA[
		Determines the day of the month, in a date.
		The ordinal for the day of the month, ranging from 1 to 31.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric DayOfWeek(date)
--><function  name="dayofweek" returns="Numeric">
	<help><![CDATA[
		Determines the day of the week, in a date.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String DayOfWeekAsString(day_of_week)
--><function  name="dayofweekasstring" returns="String">
	<help><![CDATA[
		Determines the day of the week as a string from 1-7
	]]></help>
	<parameter name="day_of_week" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric DayOfYear(date)
--><function  name="dayofyear" returns="Numeric">
	<help><![CDATA[
		Determines the day of the year, in a date.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric DaysInMonth(date)
--><function  name="daysinmonth" returns="Numeric">
	<help><![CDATA[
		Determines the number of days in a month.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric DaysInYear(date)
--><function  name="daysinyear" returns="Numeric">
	<help><![CDATA[
		Determines the number of days in a year.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Object DE(string)
--><function  name="de" returns="Object">
	<help><![CDATA[
		Postpones evaluation of a string as an expression, when it is
		passed as a parameter to the IIf or Evaluate functions. Escapes
		any double quotation marks in the parameter and wraps the
		result in double quotation marks.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String DecimalFormat(number)
--><function  name="decimalformat" returns="String">
	<help><![CDATA[
		Converts a number to a decimal-formatted string.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric DecrementValue(number)
--><function  name="decrementvalue" returns="Numeric">
	<help><![CDATA[
		Decrements the integer part of a number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Decrypt(encrypted_string, key[, algorithm[, encoding[, IVorSalt[, iterations]]]])
--><function  name="decrypt" returns="String">
	<help><![CDATA[
		Decrypts a string that is encrypted with the Encrypt function.
	]]></help>
	<parameter name="encrypted_string" type="String" required="true">
		<help><![CDATA[
			String to decrypt.
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Key or seed used to encrypt the string.
			* For the CFMX_COMPAT algorithm, any combination of any
			  number of characters; used as a seed used to generate
			  a 32-bit encryption key.
			* For all other algorithms, a key in the format used by the
			  algorithm. For these algorithms, use the GenerateSecretKey
			  function to generate the key.
		]]></help>
	</parameter>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
			The algorithm to use to decrypt the string. Must be the same
			as the algorithm used to encrypt the string.
			* CFMX_COMPAT: the algorithm used in ColdFusion MX and prior
			  releases. This algorithm is the least secure option (default).
			* AES: the Advanced Encryption Standard specified by the
			  National Institute of Standards and Technology (NIST) FIPS-197.
			* BLOWFISH: the Blowfish algorithm defined by Bruce Schneier.
			* DES: the Data Encryption Standard algorithm defined by NIST FIPS-46-3.
			* DESEDE: the "Triple DES" algorithm defined by NIST FIPS-46-3.
		]]></help>
		<values default="&quot;CFMX_COMPAT&quot;">
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;AES&quot;"/>
			<value option="&quot;BLOWFISH&quot;"/>
			<value option="&quot;DES&quot;"/>
			<value option="&quot;DESEDE&quot;"/>
		</values>
	</parameter>
	<parameter name="encoding" type="String" required="false">
		<help><![CDATA[
			The binary encoding used to represent the data as a string.
			Must be the same as the algorithm used to encrypt the string.
			* Base64: the Base64 algorithm, as specified by IETF RFC 2045.
			* Hex: the characters A-F and 0-9 represent the hexadecimal byte values.
			* UU: the UNIX standard UUEncode algorithm (default).
			If you specify this parameter, you must also specify the algorithm parameter.
		]]></help>
		<values default="&quot;UU&quot;">
			<value option="&quot;UU&quot;"/>
			<value option="&quot;Base64&quot;"/>
			<value option="&quot;Hex&quot;"/>
		</values>
	</parameter>
	<parameter name="ivorsalt" type="Binary" required="false">
		<help><![CDATA[
			Specify this parameter to adjust ColdFusion encryption to match
			the details of other encryption software. If you specify this
			parameter, you must also specify the algorithm parameter.
			* For Block Encryption Algorithms: This is the binary
			  Initialization Vector value to use with the algorithm. The
			  algorithm must contain a Feedback Mode other than ECB. This
			  must be a binary value that is exactly the same size as the
			  algorithm block size.
			* For Password Based Encryption Algorithms: This is the binary
			  Salt value to transform the password into a key.
		]]></help>
	</parameter>
	<parameter name="iterations" type="Numeric" required="false">
		<help><![CDATA[
			The number of iterations to transform the password into a
			binary key. Specify this parameter to adjust ColdFusion
			encryption to match the details of other encryption software.
			If you specify this parameter, you must also specify the
			algorithm parameter with a Password Based Encryption (PBE)
			algorithm. Do not specify this parameter for Block Encryption
			Algorithms. You must use the same value to encrypt and
			decrypt the data.
			* For Password Based Encryption Algorithms: This is the
			  binary Salt value to transform the password into a key.
		]]></help>
	</parameter>
</function>
<!--
	boolean DeleteClientVariable("name")
--><function  name="deleteclientvariable" returns="boolean">
	<help><![CDATA[
		Deletes a client variable. (To test for the existence of a
		variable, use IsDefined.)
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean DirectoryExists(absolute_path)
--><function  name="directoryexists" returns="boolean">
	<help><![CDATA[
		Determines whether a directory exists.
	]]></help>
	<parameter name="absolute_path" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String DollarFormat(number)
--><function  name="dollarformat" returns="String">
	<help><![CDATA[
		Formats a string in U.S. format. (For other currencies, use
		LSCurrencyFormat or LSEuroCurrencyFormat.)
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Object Duplicate(variable_name)
--><function  name="duplicate" returns="Object">
	<help><![CDATA[
		Returns a clone, also known as a deep copy, of a variable
		or XML object. There is no reference to the original variable.
	]]></help>
	<parameter name="variable" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Encrypt(string, key[, algorithm[, encoding[, IVorSalt[, iterations]]]]))
--><function  name="encrypt" returns="String">
	<help><![CDATA[
		Encrypts a string. Uses a symmetric key-based algorithm, in
		which the same key is used to encrypt and decrypt a string.
		The security of the encrypted string depends on maintaining
		the secrecy of the key. Uses an XOR-based algorithm that uses
		a pseudo-random 32-bit key, based on a seed passed by the user
		as a function parameter.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			String to encrypt.
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Key or seed used to encrypt the string.
			* For the CFMX_COMPAT algorithm, any combination of any
			  number of characters; used as a seed used to generate
			  a 32-bit encryption key.
			* For all other algorithms, a key in the format used by the
			  algorithm. For these algorithms, use the GenerateSecretKey
			  function to generate the key.
		]]></help>
	</parameter>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
			The algorithm to use to encrypt the string. 
			* CFMX_COMPAT: the algorithm used in ColdFusion MX and prior
			  releases. This algorithm is the least secure option (default).
			* AES: the Advanced Encryption Standard specified by the
			  National Institute of Standards and Technology (NIST) FIPS-197.
			* BLOWFISH: the Blowfish algorithm defined by Bruce Schneier.
			* DES: the Data Encryption Standard algorithm defined by NIST FIPS-46-3.
			* DESEDE: the "Triple DES" algorithm defined by NIST FIPS-46-3.
		]]></help>
		<values default="&quot;CFMX_COMPAT&quot;">
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;AES&quot;"/>
			<value option="&quot;BLOWFISH&quot;"/>
			<value option="&quot;DES&quot;"/>
			<value option="&quot;DESEDE&quot;"/>
		</values>
	</parameter>
	<parameter name="encoding" type="String" required="false">
		<help><![CDATA[
			The binary encoding used to represent the data as a string.
			Must be the same as the algorithm used to encrypt the string.
			* Base64: the Base64 algorithm, as specified by IETF RFC 2045.
			* Hex: the characters A-F and 0-9 represent the hexadecimal byte values.
			* UU: the UNIX standard UUEncode algorithm (default).
			If you specify this parameter, you must also specify the algorithm parameter.
		]]></help>
		<values default="&quot;UU&quot;">
			<value option="&quot;UU&quot;"/>
			<value option="&quot;Base64&quot;"/>
			<value option="&quot;Hex&quot;"/>
		</values>
	</parameter>
	<parameter name="ivorsalt" type="Binary" required="false">
		<help><![CDATA[
			Specify this parameter to adjust ColdFusion encryption to match
			the details of other encryption software. If you specify this
			parameter, you must also specify the algorithm parameter.
			* For Block Encryption Algorithms: This is the binary
			  Initialization Vector value to use with the algorithm. The
			  algorithm must contain a Feedback Mode other than ECB. This
			  must be a binary value that is exactly the same size as the
			  algorithm block size.
			* For Password Based Encryption Algorithms: This is the binary
			  Salt value to transform the password into a key.
		]]></help>
	</parameter>
	<parameter name="iterations" type="Numeric" required="false">
		<help><![CDATA[
			The number of iterations to transform the password into a
			binary key. Specify this parameter to adjust ColdFusion
			encryption to match the details of other encryption software.
			If you specify this parameter, you must also specify the
			algorithm parameter with a Password Based Encryption (PBE)
			algorithm. Do not specify this parameter for Block Encryption
			Algorithms. You must use the same value to encrypt and
			decrypt the data.
			* For Password Based Encryption Algorithms: This is the
			  binary Salt value to transform the password into a key.
		]]></help>
	</parameter>
</function>
<!--
	Object Evaluate(string_expression1 [, string_expression2 [, ... ] ] )
--><function  name="evaluate" returns="Object">
	<help><![CDATA[
		Evaluates one or more string expressions, dynamically, from
		left to right. (The results of an evaluation on the left can
		have meaning in an expression to the right.) Returns the
		result of evaluating the rightmost expression.
	]]></help>
	<parameter name="expression1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="expression2" type="String" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="expressionN" type="String" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Exp(number)
--><function  name="exp" returns="Numeric">
	<help><![CDATA[
		Calculates the exponent whose base is e that represents number.
		The constant e equals 2.71828182845904, the base of the natural
		logarithm. This function is the inverse of Log, the natural
		logarithm of number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String ExpandPath(relative_path)
--><function  name="expandpath" returns="String">
	<help><![CDATA[
		Creates an absolute, platform-appropriate path that is
		equivalent to the value of relative_path, appended to the base
		path. This function (despite its name) can accept an absolute
		or relative path in the relative_path attribute
	]]></help>
	<parameter name="relative_path" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean FileExists(absolute_path)
--><function  name="fileexists" returns="boolean">
	<help><![CDATA[
		Determines whether a file exists
	]]></help>
	<parameter name="path" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Find(substring, string [, start ])
--><function  name="find" returns="Numeric">
	<help><![CDATA[
		Finds the first occurrence of a substring in a string, from a
		specified start position. The search is case-sensitive.
	]]></help>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
		<values default="1">
			<value option="1"/>
		</values>
	</parameter>
</function>
<!--
	Numeric FindNoCase(substring, string [, start ])
--><function  name="findnocase" returns="Numeric">
	<help><![CDATA[
		Finds the first occurrence of a substring in a string, from a
		specified start position. If substring is not in string,
		returns zero. The search is case-insensitive.
	]]></help>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
		<values default="1">
			<value option="1"/>
		</values>
	</parameter>
</function>
<!--
	Numeric FindOneOf(set, string [, start ])
--><function  name="findoneof" returns="Numeric">
	<help><![CDATA[
		Finds the first occurrence of any one of a set of characters
		in a string, from a specified start position. The search is
		case-sensitive.
	]]></help>
	<parameter name="set" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
		<values default="1">
			<value option="1"/>
		</values>
	</parameter>
</function>
<!--
	Numeric FirstDayOfMonth(date)
--><function  name="firstdayofmonth" returns="Numeric">
	<help><![CDATA[
		Determines the ordinal (day number, in the year) of the first
		day of the month in which a given date falls.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Fix(number)
--><function  name="fix" returns="Numeric">
	<help><![CDATA[
		Converts a real number to an integer.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String FormatBaseN(number, radix)
--><function  name="formatbasen" returns="String">
	<help><![CDATA[
		String Converts number to a string, in the base specified by
		radix. For example: #FormatBaseN(1024,16)#
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="radix" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String GenerateSecretKey(algorithm)
--><function  name="generatesecretkey" returns="String">
	<help><![CDATA[
		Gets a secure key value for use in the encrypt function.
	]]></help>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;AES&quot;"/>
			<value option="&quot;BLOWFISH&quot;"/>
			<value option="&quot;DES&quot;"/>
			<value option="&quot;DESEDE&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String GetAuthUser()
--><function  name="getauthuser" returns="String">
	<help><![CDATA[
		Gets the name of an authenticated user.
	]]></help>
</function>
<!--
	Object GetBaseTagData(tagname [, instancenumber ] )
--><function  name="getbasetagdata" returns="Object">
	<help><![CDATA[
		Used within a custom tag. Finds calling (ancestor) tag by
		name and accesses its data.
	]]></help>
	<parameter name="tagname" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="instancenumber" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String GetBaseTagList()
--><function  name="getbasetaglist" returns="String">
	<help><![CDATA[
		Gets ancestor tag names, starting with the parent tag.
	]]></help>
</function>
<!--
	String GetBaseTemplatePath()
--><function  name="getbasetemplatepath" returns="String">
	<help><![CDATA[
		Gets the absolute path of an application's base page.
	]]></help>
</function>
<!--
	String GetClientVariablesList()
--><function  name="getclientvariableslist" returns="String">
	<help><![CDATA[
		Finds the client variables to which a page has write access.
		Comma-delimited list of non-read-only client variables
	]]></help>
</function>
<!--
	String GetContextRoot()
--><function  name="getcontextroot" returns="String">
	<help><![CDATA[
		Returns path to the J2EE server context root for the current request.
	]]></help>
</function>
<!--
	String GetCurrentTemplatePath()
--><function  name="getcurrenttemplatepath" returns="String">
	<help><![CDATA[
		Gets the absolute path of the page that calls this function.
	]]></help>
</function>
<!--
	String GetDirectoryFromPath(path)
--><function  name="getdirectoryfrompath" returns="String">
	<help><![CDATA[
		Extracts a directory from an absolute path.
		Returns the absolute path, without the filename.
	]]></help>
	<parameter name="path" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String GetEncoding(scope_name)
--><function  name="getencoding" returns="String">
	<help><![CDATA[
		Returns the encoding (character set) of the Form or URL scope.
	]]></help>
	<parameter name="scope_name" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;form&quot;"/>
			<value option="&quot;url&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Object getException(object)
--><function  name="getexception" returns="Object">
	<help><![CDATA[
		Used with the cftry and cfcatch tags. Retrieves a Java
		exception object from a Java object.
	]]></help>
	<parameter name="javaobject" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String GetFileFromPath(path)
--><function  name="getfilefrompath" returns="String">
	<help><![CDATA[
		Extracts a filename from an absolute path.
	]]></help>
	<parameter name="path" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Struct GetFunctionList()
--><function  name="getfunctionlist" returns="Struct">
	<help><![CDATA[
		Displays a list of the functions that are available in
		CFML.
	]]></help>
</function>
<!--
	Object GetGatewayHelper(gatewayID)
--><function  name="getgatewayhelper" returns="Object">
	<help><![CDATA[
		Gets a Java GatewayHelper object that provides methods
		and properties for use with a ColdFusion event gateway.
	]]></help>
	<parameter name="gatewayID" type="String" required="true">
		<help><![CDATA[
			Identifier of the gateway that provides the GatewayHelper object.
		]]></help>
	</parameter>
</function>
<!--
	Struct GetHttpRequestData()
--><function  name="gethttprequestdata" returns="Struct">
	<help><![CDATA[
		Makes HTTP request headers and body available to CFML pages.
		Useful for capturing SOAP request data, which can be delivered
		in an HTTP header.
	]]></help>
</function>
<!--
	String GetHttpTimeString(date_time_object)
--><function  name="gethttptimestring" returns="String">
	<help><![CDATA[
		Gets the current time, in the Universal Time code (UTC).
	]]></help>
	<parameter name="DateTime" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric GetK2ServerDocCount()
--><function  name="getk2serverdoccount" returns="Numeric" compatibility="deprecated">
	<help><![CDATA[
		This function is deprecated.
		
		Determines the number of documents that can be searched by the
		CFML registered K2 Server. This function is used
		primarily by the CFML Verity and K2Server Administrator
		pages, and requires significant processing time. Avoid using
		it in production applications. This function uses Verity
		K2Server Release K2.2.0.
	]]></help>
</function>
<!--
	Numeric GetK2ServerDocCountLimit()
--><function  name="getk2serverdoccountlimit" returns="Numeric" compatibility="deprecated">
	<help><![CDATA[
		This function is deprecated.
		
		Gets the maximum number of documents that the CFML
		registered K2 Server is permitted to return from a search.
		This function is used primarily by the CFML Verity and
		K2Server Administrator pages. This function uses Verity
		K2Server Release K2.2.0.
	]]></help>
</function>
<!--
	String GetLocale()
--><function  name="getlocale" returns="String">
	<help><![CDATA[
		Gets the current geographic/language locale value.
		To set the default display format of date, time, number, and
		currency values in a CFML application session, you use
		the SetLocale function.
	]]></help>
</function>
<!--
	String GetLocaleDisplayName([locale[, inLocale]])
--><function  name="getlocaledisplayname" returns="String">
	<help><![CDATA[
		Gets a locale value and displays the name in a manner
		that is appropriate to a specific locale. By default,
		gets the current locale in the current locale's language.
	]]></help>
</function>
<!--
	Object GetMetaData(object)
--><function  name="getmetadata" returns="Object">
	<help><![CDATA[
		Gets metadata (the methods, properties, and parameters of a
		component) associated with an object that is deployed on the
		CFML server.
	]]></help>
	<parameter name="Object" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Object GetMetricData(mode)
--><function  name="getmetricdata" returns="Object">
	<help><![CDATA[
		Gets server performance metrics
		[mode - quicky]
			perf_monitor - Returns internal data, in a structure.
			simple_load - Returns an integer value that is computed
			  	from the state of the server's internal
			  	queues. Indicates the overall server load.
			prev_req_time - Returns the time, in milliseconds, that it
				took the server to process the previous
				request.
 			avg_req_time - Returns the average time, in milliseconds,
 				that it takes the server to process a
 				request.
	]]></help>
	<parameter name="mode" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;perf_monitor&quot;"/>
			<value option="&quot;simple_load&quot;"/>
			<value option="&quot;prev_req_time&quot;"/>
			<value option="&quot;avg_req_time&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Object GetPageContext()
--><function  name="getpagecontext" returns="Object">
	<help><![CDATA[
		Gets the current CFML MX PageContext object that
		provides access to page attributes and configuration, request
		and response objects.
	]]></help>
</function>
<!--
	Struct GetProfileSections(iniFile)
--><function  name="getprofilesections" returns="Struct">
	<help><![CDATA[
		Gets all the sections of an initialization file.
		An initialization file, as a struct whose format is as follows:
			- Each initialization file section name is a key in the
			  struct
			- Each list of entries in a section of an initialization
			  file is a value in the struct
	]]></help>
	<parameter name="inifile" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String GetProfileString(iniPath, section, entry)
--><function  name="getprofilestring" returns="String">
	<help><![CDATA[
		Gets an initialization file entry.
		An initialization file assigns values to configuration
		variables, also known as entries, that are set when the system
		boots, the operating system comes up, or an application starts.
		Returns the entry - if no value, returns an empty string.
	]]></help>
	<parameter name="inipath" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="section" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="entry" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Object GetSOAPRequest()
--><function  name="getsoaprequest" returns="Object">
	<help><![CDATA[
		Returns an XML object that contains the entire SOAP
		request. Usually called from within a web service CFC.
	]]></help>
</function>
<!--
	Object GetSOAPRequestHeader(namespace, name [, asXML])
--><function  name="getsoaprequestheader" returns="Object">
	<help><![CDATA[
		Obtains a SOAP request header. Call only from within
		a CFC web service function that is processing a request
		as a SOAP web service.
	]]></help>
	<parameter name="namespace" type="String" required="true">
		<help><![CDATA[
		A String that is the namespace for the header
		]]></help>
	</parameter>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
		A String that is the name of the header
		]]></help>
	</parameter>
	<parameter name="asXML" type="boolean" required="false">
		<help><![CDATA[
		If True, the header is returned as a CFML XML object;
		if false (default), the header is returned as a Java object.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	Object GetSOAPResponse(webservice)
--><function  name="getsoapresponse" returns="Object">
	<help><![CDATA[
		Returns an XML object that contains the entire
		SOAP response after invoking a web service.
	]]></help>
	<parameter name="webservice" type="String" required="true">
		<help><![CDATA[
			A webservice object as returned from the cfobject
			tag or the CreateObject function.
		]]></help>
	</parameter>
</function>
<!--
	Object GetSOAPResponseHeader(webservice, namespace, name [, asXML])
--><function  name="getsoapresponseheader" returns="Object">
	<help><![CDATA[
		Returns a SOAP response header. Call this function
		from within code that is invoking a web service after
		making a web service request.
	]]></help>
	<parameter name="webservice" type="Object" required="true">
		<help><![CDATA[
			A webservice object as returned from the cfobject tag
			or the Createobject function.
		]]></help>
	</parameter>
	<parameter name="namespace" type="String" required="true">
		<help><![CDATA[
			A String that is the namespace for the header.
		]]></help>
	</parameter>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			A String that is the name of the SOAP header.
		]]></help>
	</parameter>
	<parameter name="asXML" type="boolean" required="false">
		<help><![CDATA[
			If True, the header is returned as a CFML XML object;
			if false (default), the header is returned as a Java object.
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	String GetTempDirectory()
--><function  name="gettempdirectory" returns="String">
	<help><![CDATA[
		Gets the path of the directory that CFML uses for
		temporary files. Before using this function in an application,
		test to determine the directory it returns under your account.
		Returns the absolute pathname of a directory, including a
		trailing slash.
	]]></help>
</function>
<!--
	String GetTempFile(dir, prefix)
--><function  name="gettempfile" returns="String">
	<help><![CDATA[
		Creates a temporary file in a directory whose name starts with
		(at most) the first three characters of prefix.
	]]></help>
	<parameter name="dir" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="prefix" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	GetTemplatePath
--><function  name="gettemplatepath" returns="String" compatibility="deprecated">
	<help><![CDATA[
		This function is deprecated.
		
		Use the GetBaseTemplatePath function instead.
	]]></help>
</function>
<!--
	Numeric GetTickCount()
--><function  name="gettickcount" returns="Numeric">
	<help><![CDATA[
		Returns the current value of an internal millisecond timer.
	]]></help>
</function>
<!--
	Object GetTimeZoneInfo()
--><function  name="gettimezoneinfo" returns="Object">
	<help><![CDATA[
		Gets local time zone information for the computer on which it
		is called, relative to Universal Time Coordinated (UTC). UTC is
		the mean solar time of the meridian of Greenwich, England.
	]]></help>
	<parameter name="text" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String GetToken(string, index [, delimiters ])
--><function  name="gettoken" returns="String">
	<help><![CDATA[
		Determines whether a token of the list in the delimiters
		parameter is present in a string.
		Returns the token found at position index of the string, as a
		string. If index is greater than the number of tokens in the
		string, returns an empty string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="index" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;_&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;:&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String Hash(string[, algorithm[, encoding]] )
--><function  name="hash" returns="String">
	<help><![CDATA[
		Converts a variable-length string to a 32-byte, hexadecimal
		string, using the MD5 algorithm. (It is not possible to convert
		the hash result back to the source string.)
		32-byte, hexadecimal string
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;CFMX_COMPAT&quot;">
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;MD5&quot;"/>
			<value option="&quot;SHA&quot;"/>
			<value option="&quot;SHA-256&quot;"/>
			<value option="&quot;SHA-384&quot;"/>
			<value option="&quot;SHA-512&quot;"/>
		</values>
	</parameter>
	<parameter name="encoding" type="String" required="false">
		<help><![CDATA[
			A string specifying the encoding to use when converting
			the string to byte data used by the hash algorithm.
			Must be a character encoding name recognized by the
			Java runtime.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jp&quot;"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Hour(date)
--><function  name="hour" returns="Numeric">
	<help><![CDATA[
		Gets the current hour of the day.
		Ordinal value of the hour, in the range 0 - 23.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String HTMLCodeFormat(string [, version ])
--><function  name="htmlcodeformat" returns="String">
	<help><![CDATA[
		Replaces special characters in a string with their HTML-escaped
		equivalents and inserts <pre> and </pre> tags at the beginning
		and end of the string.
		[version]
			HTML version to use. currently ignored.
			-1: The latest implementation of HTML
			2.0: HTML 2.0 (Default)
			3.2: HTML 3.2
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="version" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="-1"/>
			<value option="2.0"/>
			<value option="3.2"/>
		</values>
	</parameter>
</function>
<!--
	String HTMLEditFormat(string [, version ])
--><function  name="htmleditformat" returns="String">
	<help><![CDATA[
		Replaces special characters in a string with their
		HTML-escaped equivalents.
		[version]
			HTML version to use. currently ignored.
			-1: The latest implementation of HTML
			2.0: HTML 2.0 (Default)
			3.2: HTML 3.2
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="version" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="-1"/>
			<value option="2.0"/>
			<value option="3.2"/>
		</values>
	</parameter>
</function>
<!--
	String IIf(condition, string_expression1, string_expression2)
--><function  name="iif" returns="String">
	<help><![CDATA[
		Evaluates a Boolean conditional dynamic expression. Depending
		on whether the expression is true or false, dynamically
		evaluates one of two string expressions and returns the result.
	]]></help>
	<parameter name="condition" type="boolean" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="expression1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="expression2" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric IncrementValue(number)
--><function  name="incrementvalue" returns="Numeric">
	<help><![CDATA[
		Adds one to an integer. same as x=x+1
		Why bother?
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric InputBaseN(string, radix)
--><function  name="inputbasen" returns="Numeric">
	<help><![CDATA[
		Converts string, using the base specified by radix, to an
		integer. For example: #InputBaseN("3ff",16)#
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="radix" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Insert(substring, string, position)
--><function  name="insert" returns="String">
	<help><![CDATA[
		Inserts a substring in a string after a specified character
		position. If position = 0, prefixes the substring to the
		string.
	]]></help>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Int(number)
--><function  name="int" returns="Numeric">
	<help><![CDATA[
		Calculates the closest integer that is smaller than number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsArray(value [, number ])
--><function  name="isarray" returns="boolean">
	<help><![CDATA[
		Determines whether a value is an array.
		True, if value is an array, a query column object, or xml.
		also number = Dimension; function tests whether the array has
		exactly this dimension
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsBinary(value)
--><function  name="isbinary" returns="boolean">
	<help><![CDATA[
		Determines whether a value is stored as binary data.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsBoolean(value)
--><function  name="isboolean" returns="boolean">
	<help><![CDATA[
		Determines whether a value can be converted to Boolean
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsCustomFunction(name)
--><function  name="iscustomfunction" returns="boolean">
	<help><![CDATA[
		Determines whether a name represents a custom function
	]]></help>
	<parameter name="Object" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsDate(string)
--><function  name="isdate" returns="boolean">
	<help><![CDATA[
		Determines whether a string or Java object can be converted
		to a date/time value.
	]]></help>
	<parameter name="Object" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsDebugMode()
--><function  name="isdebugmode" returns="boolean">
	<help><![CDATA[
		Determines whether debugging output is enabled.
	]]></help>
</function>
<!--
	boolean IsDefined("variable_name")
--><function  name="isdefined" returns="boolean" compatibility="deprecated">
	<help><![CDATA[
		Evaluates a string value to determine whether the variable
		named in it exists.
	]]></help>
	<parameter name="variable_name" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsK2ServerABroker()
--><function  name="isk2serverabroker" returns="boolean" compatibility="deprecated">
	<help><![CDATA[
		This function is deprecated.
		
		Determines whether the K2Server version is K2 Broker. For more
		information, see GetK2ServerDocCountLimit. This function is
		used primarily by the CFML Verity and K2Server
		Administrator pages. This function uses Verity K2Server
		Release K2.2.0.
	]]></help>
</function>
<!--
	boolean IsK2ServerDocCountExceeded()
--><function  name="isk2serverdoccountexceeded" returns="boolean" compatibility="deprecated">
	<help><![CDATA[
		This function is deprecated.
		
		Determines whether the number of documents that can be searched
		by the CFML registered K2 Server exceed the limit.
		Depends on the K2Server platform limit; see
		GetK2ServerDocCountLimit.
	]]></help>
</function>
<!--
	boolean IsK2ServerOnline()
--><function  name="isk2serveronline" returns="boolean" compatibility="deprecated">
	<help><![CDATA[
		This function is deprecated.
		
		Determines whether the K2Server is running and available to
		perform a search. This function is used primarily by the
		CFML Verity and K2Server Administrator pages. This
		function uses Verity K2Server Release K2.2.0.
	]]></help>
</function>
<!--
	boolean IsLeapYear(year)
--><function  name="isleapyear" returns="boolean">
	<help><![CDATA[
		Determines whether a year is a leap year.
	]]></help>
	<parameter name="year" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsNumeric(string)
--><function  name="isnumeric" returns="boolean">
	<help><![CDATA[
		Determines whether a string can be converted to a numeric value.
		Supports numbers in U.S. number format. For other number support
		use LSIsNumeric.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsNumericDate(number)
--><function  name="isnumericdate" returns="boolean">
	<help><![CDATA[
		Evaluates whether a real number is a valid representation of a
		date (date/time object).
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsObject(value)
--><function  name="isobject" returns="boolean">
	<help><![CDATA[
		Determines whether a value is an object.
		True, if the value represents a CFML object. False if
		the value is any other type of data, such as an integer, string,
		date, or struct.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsQuery(value)
--><function  name="isquery" returns="boolean">
	<help><![CDATA[
		Determines whether value is a query.
	]]></help>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsSimpleValue(value)
--><function  name="issimplevalue" returns="boolean">
	<help><![CDATA[
		Determines the type of a value.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsSOAPRequest()
--><function  name="issoaprequest" returns="boolean">
	<help><![CDATA[
		Determines whether a CFC is being called as a web service.
	]]></help>
</function>
<!--
	boolean IsStruct(variable)
--><function  name="isstruct" returns="boolean">
	<help><![CDATA[
		Determines whether a variable is a structure.
		True, if variable is a CFML structure or is a Java object
		that implements the java.lang.Map interface. Returns False if the
		object in variable is a user-defined function (UDF).
	]]></help>
	<parameter name="variable" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsUserInRole("role_name")
--><function  name="isuserinrole" returns="String">
	<help><![CDATA[
		Determines whether an authenticated user belongs to the
		specified Role.
	]]></help>
	<parameter name="role_name" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsValid(type, value)
	boolean IsValid("range", value, min, max)
	boolean IsValid("Regex" or "regular_expression", value, pattern)
--><function  name="isvalid" returns="boolean">
	<help><![CDATA[
		Tests whether a value meets a validation or data type rule.
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
			The valid format for the data.
		]]></help>
		<values>
			<value option="&quot;Any&quot;"/>
			<value option="&quot;Array&quot;"/>
			<value option="&quot;Binary&quot;"/>
			<value option="&quot;boolean&quot;"/>
			<value option="&quot;creditcard&quot;"/>
			<value option="&quot;date&quot;"/>
			<value option="&quot;time&quot;"/>
			<value option="&quot;email&quot;"/>
			<value option="&quot;eurodate&quot;"/>
			<value option="&quot;float&quot;"/>
			<value option="&quot;Numeric&quot;"/>
			<value option="&quot;guid&quot;"/>
			<value option="&quot;integer&quot;"/>
			<value option="&quot;Query&quot;"/>
			<value option="&quot;range&quot;"/>
			<value option="&quot;Regex&quot;"/>
			<value option="&quot;regular_expression&quot;"/>
			<value option="&quot;ssn&quot;"/>
			<value option="&quot;social_security_number&quot;"/>
			<value option="&quot;String&quot;"/>
			<value option="&quot;Struct&quot;"/>
			<value option="&quot;telephone&quot;"/>
			<value option="&quot;URL&quot;"/>
			<value option="&quot;UUID&quot;"/>
			<value option="&quot;usdate&quot;"/>
			<value option="&quot;variablename&quot;"/>
			<value option="&quot;xml&quot;"/>
			<value option="&quot;zipcode&quot;"/>
		</values>
	</parameter>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
			The value to test.
		]]></help>
	</parameter>
	<parameter name="min" type="Numeric" required="true">
		<help><![CDATA[
			The minimum valid value; used only for range validation.
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;range&quot;" required="true" index="1"/>
		</triggers>
	</parameter>
	<parameter name="max" type="Numeric" required="true">
		<help><![CDATA[
			The maximum valid value; used only for range validation.
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;range&quot;" required="true" index="1"/>
		</triggers>
	</parameter>
	<parameter name="pattern" type="String" required="true">
		<help><![CDATA[
			A regular expression that the parameter must match;
			used only for regex or regular_expression validation.
		]]></help>
		<triggers>
			<selectedValue attributeName="type" value="&quot;Regex&quot;" required="true" index="1"/>
			<selectedValue attributeName="type" value="&quot;regular_expression&quot;" required="true" index="2"/>
		</triggers>
	</parameter>
</function>
<!--
	boolean IsWDDX(value)
--><function  name="iswddx" returns="boolean">
	<help><![CDATA[
		Determines whether a value is a well-formed WDDX packet.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsXML(value)
--><function  name="isxml" returns="boolean">
	<help><![CDATA[
		Determines whether a string is well-formed XML text.
	]]></help>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			A string containing the XML document text.
		]]></help>
	</parameter>
</function>
<!--
	boolean IsXmlAttribute(value)
--><function  name="isxmlattribute" returns="boolean">
	<help><![CDATA[
		Determines whether the function parameter is an
		XML Document Object Model (DOM) attribute node.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
			Name of an XML attribute.
		]]></help>
	</parameter>
</function>
<!--
	boolean IsXmlDoc(value)
--><function  name="isxmldoc" returns="boolean">
	<help><![CDATA[
		Determines whether a function parameter is an Extended Markup
		language (XML) document object.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsXmlElem(value)
--><function  name="isxmlelem" returns="boolean">
	<help><![CDATA[
		Determines whether a function parameter is an Extended Markup
		language (XML) document object element.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean IsXmlNode(value)
--><function  name="isxmlnode" returns="boolean">
	<help><![CDATA[
		Determines whether the function parameter is
		an XML document object node.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
			Name of an XML document object node.
		]]></help>
	</parameter>
</function>
<!--
	boolean IsXmlRoot(value)
--><function  name="isxmlroot" returns="boolean">
	<help><![CDATA[
		Determines whether a function parameter is the root element of
		an Extended Markup language (XML) document object.
	]]></help>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Object JavaCast(type, variable)
--><function  name="javacast" returns="Object">
	<help><![CDATA[
		Converts the data type of a CFML variable to pass as an
		argument to an overloaded method of a Java object. Use only
		for scalar and string arguments.
		[type - quicky]
		boolean,int,long,float,double,string
	]]></help>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="boolean"/>
			<value option="double"/>
			<value option="float"/>
			<value option="int"/>
			<value option="long"/>
			<value option="string"/>
		</values>
	</parameter>
	<parameter name="variable" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String JSStringFormat(string)
--><function  name="jsstringformat" returns="String">
	<help><![CDATA[
		Escapes special JavaScript characters, such as single quotation
		mark, double quotation mark, and newline
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String LCase(string)
--><function  name="lcase" returns="String">
	<help><![CDATA[
		Converts the alphabetic characters in a string to lowercase.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Left(string, count)
--><function  name="left" returns="String">
	<help><![CDATA[
		Returns the leftmost count characters in a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Len(string or binary object)
--><function  name="len" returns="Numeric">
	<help><![CDATA[
		Determines the length of a string or binary object
	]]></help>
	<parameter name="Object" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String ListAppend(list, value [, delimiters ])
--><function  name="listappend" returns="String">
	<help><![CDATA[
		Concatenates a list or element to a list.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			An element or a list of elements.
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default=",">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;_&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;:&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListChangeDelims(list, new_delimiter [, delimiters ])
--><function  name="listchangedelims" returns="String">
	<help><![CDATA[
		Changes a list delimiter.
		Returns a copy of the list, with each delimiter character
		replaced by new_delimiter.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="new_delimiter" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default=",">
			<value option=","/>
			<value option="|"/>
			<value option=";"/>
			<value option="chr(9)"/>
			<value option="chr(10)"/>
			<value option="chr(13)"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListContains(list, substring [, delimiters ])
--><function  name="listcontains" returns="Numeric">
	<help><![CDATA[
		Determines the index of the first list element that contains a
		specified substring.
		Returns the index of the first list element that contains
		substring. If not found, returns zero.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListContainsNoCase(list, substring [, delimiters ])
--><function  name="listcontainsnocase" returns="Numeric">
	<help><![CDATA[
		Determines the index of the first list element that contains a
		specified substring.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListDeleteAt(list, position [, delimiters ])
--><function  name="listdeleteat" returns="String">
	<help><![CDATA[
		Deletes an element from a list.
		Returns a copy of the list, without the specified element.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListFind(list, value [, delimiters ])
--><function  name="listfind" returns="Numeric">
	<help><![CDATA[
		Determines the index of the first list element in which a
		specified value occurs. Case-sensitive
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListFindNoCase(list, value [, delimiters ])
--><function  name="listfindnocase" returns="Numeric">
	<help><![CDATA[
		Determines the index of the first list element in which a
		specified value occurs
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false" default=",">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListFirst(list [, delimiters ])
--><function  name="listfirst" returns="String">
	<help><![CDATA[
		Gets the first element of a list.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListGetAt(list, position [, delimiters ])
--><function  name="listgetat" returns="String">
	<help><![CDATA[
		Gets a list element at a specified position.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListInsertAt(list, position, value [, delimiters ])
--><function  name="listinsertat" returns="String">
	<help><![CDATA[
		Inserts an element in a list.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListLast(list [, delimiters ])
--><function  name="listlast" returns="String">
	<help><![CDATA[
		Gets the last element of a list.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListLen(list [, delimiters ])
--><function  name="listlen" returns="Numeric">
	<help><![CDATA[
		Determines the number of elements in a list.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListPrepend(list, value [, delimiters ])
--><function  name="listprepend" returns="String">
	<help><![CDATA[
		Inserts an element at the beginning of a list.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListQualify(list, qualifier [, delimiters ] [, elements ])
--><function  name="listqualify" returns="String">
	<help><![CDATA[
		Inserts a string at the beginning and end of list elements.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="qualifier" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
	<parameter name="elements" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="all"/>
			<value option="char"/>
		</values>
	</parameter>
</function>
<!--
	String ListRest(list [, delimiters ])
--><function  name="listrest" returns="String">
	<help><![CDATA[
		Gets a list, without its first element.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListSetAt(list, position, value [, delimiters ])
--><function  name="listsetat" returns="String">
	<help><![CDATA[
		Replaces the contents of a list element.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="position" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ListSort(list, sort_type [, sort_order] [, delimiters ])
--><function  name="listsort" returns="String">
	<help><![CDATA[
		Sorts list elements according to a sort type and sort order.
		Returns a sorted copy of the list.
		[sort_type - quicky]
		numeric: sorts numbers
		text: sorts text alphabetically, taking case into account
			- aabzABZ, if sort_order = "asc"
			- ZBAzbaa, if sort_order = "desc"
		textnocase: sorts text alphabetically, without regard to case
			- aAaBbBzzZ, in an asc sort;
			- ZzzBbBaAa, in a desc sort;
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="sort_type" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="sort_order" type="String" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Array ListToArray(list [, delimiters ])
--><function  name="listtoarray" returns="Array">
	<help><![CDATA[
		Copies the elements of a list to an array.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListValueCount(list, value [, delimiters ])
--><function  name="listvaluecount" returns="Numeric">
	<help><![CDATA[
		Counts instances of a specified value in a list. The search is
		case-sensitive.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric ListValueCountNoCase(list, value [, delimiters ])
--><function  name="listvaluecountnocase" returns="Numeric">
	<help><![CDATA[
		Counts instances of a specified value in a list. The search is
		case-insensitive.
	]]></help>
	<parameter name="list" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiters" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="&quot;chr(9)&quot;"/>
			<value option="&quot;chr(10)&quot;"/>
			<value option="&quot;chr(13)&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String LJustify(string, length)
--><function  name="ljustify" returns="String">
	<help><![CDATA[
		Left justifies characters in a string of a specified length.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="length" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Log(number)
--><function  name="log" returns="Numeric">
	<help><![CDATA[
		Calculates the natural logarithm of a number. Natural
		logarithms are based on the constant e (2.71828182845904).
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Log10(number)
--><function  name="log10" returns="Numeric">
	<help><![CDATA[
		Calculates the logarithm of number, to base 10.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String LSCurrencyFormat(number [, type ])
--><function  name="lscurrencyformat" returns="String">
	<help><![CDATA[
		Formats a number in a locale-specific currency format. For
		countries that use the euro, the result depends on the JVM.
		[type - quicky]
		local: the currency format and currency symbol used locally.
			- With JDK 1.3, the default for Euro Zone: local currency.
			- With JDK 1.4, the default for Euro Zone: euro.
		international: the international standard currency format
		none: the local currency format; no currency symbol
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="type" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;local&quot;"/>
			<value option="&quot;international&quot;"/>
			<value option="&quot;none&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String LSDateFormat(date [, mask ])
--><function  name="lsdateformat" returns="String">
	<help><![CDATA[
		Formats the date part of a date/time value in a locale-specific
		format.
		[mask - quicky]
		d,dd,ddd,dddd: Day of month / week
		m,mm,mmm,mmmm: Month; y,yy,yyyy: Year; gg: Period/era string
		short / medium / long / full
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;short&quot;"/>
			<value option="&quot;medium&quot;"/>
			<value option="&quot;long&quot;"/>
			<value option="&quot;full&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String LSEuroCurrencyFormat(currency-number [, type ])
--><function  name="lseurocurrencyformat" returns="String">
	<help><![CDATA[
		Formats a number in a locale-specific currency format.
		[type - quicky]
		local: the currency format used in the locale. (Default.)
		international: the international standard currency format
		none: the currency format used; no currency symbol
	]]></help>
	<parameter name="currency" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="type" type="String" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;local&quot;"/>
			<value option="&quot;international&quot;"/>
			<value option="&quot;none&quot;"/>
		</values>
	</parameter>
</function>
<!--
	boolean LSIsCurrency(string)
--><function  name="lsiscurrency" returns="boolean">
	<help><![CDATA[
		Determines whether a string is a valid representation of a
		currency amount in the current locale.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean LSIsDate(string)
--><function  name="lsisdate" returns="boolean">
	<help><![CDATA[
		Determines whether a string is a valid representation of a
		date/time value in the current locale.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean LSIsNumeric(string)
--><function  name="lsisnumeric" returns="boolean">
	<help><![CDATA[
		Determines whether a string is a valid representation of a
		number in the current locale.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String LSNumberFormat(number [, mask ])
--><function  name="lsnumberformat" returns="String">
	<help><![CDATA[
		Formats a number in a locale-specific format.
		[mask - quicky]
		_,9 Digit placeholder; . decimal point; 0 Pads with zeros;
 		( ) less than zero, puts parentheses around the mask
 		+ plus sign before positive number minus before negative
 		- a space before positive minus sign before negative
 		, Separates every third decimal place with a comma.
 		L,C Left-justifies or center-justifies number
 		$ dollar sign before formatted number.
 		^ Separates left and right formatting.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String LSParseCurrency(string)
--><function  name="lsparsecurrency" returns="String">
	<help><![CDATA[
		Converts a locale-specific currency string into a formatted
		number. Attempts conversion by comparing the string with each
		the three supported currency formats (none, local,
		international) and using the first that matches.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	DateTime LSParseDateTime(date/time-string)
--><function  name="lsparsedatetime" returns="DateTime">
	<help><![CDATA[
		Converts a string that is a valid date/time representation in
		the current locale into a date/time object.
	]]></help>
	<parameter name="dt_string" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric LSParseEuroCurrency(currency-string)
--><function  name="lsparseeurocurrency" returns="Numeric">
	<help><![CDATA[
		Formats a locale-specific currency string as a number.
		Attempts conversion through each of the default currency
		formats (none, local, international). Ensures correct
		handling of euro currency for Euro zone countries.
	]]></help>
	<parameter name="currency_string" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric LSParseNumber(string)
--><function  name="lsparsenumber" returns="Numeric">
	<help><![CDATA[
		Converts a string that is a valid numeric representation in
		the current locale into a formatted number.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String LSTimeFormat(time [, mask ])
--><function  name="lstimeformat" returns="String">
	<help><![CDATA[
		Formats the time part of a date/time string into a string in a
		locale-specific format.
		[mask - quicky]
		h,hh,H,HH: Hours; m,mm: Minutes; s,ss: Seconds;
		l: Milliseconds; t: A or P; tt: AM or PM
		"short" = h:mm tt; "medium" = h:mm:ss tt
	]]></help>
	<parameter name="time" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="&quot;short&quot;"/>
			<value option="&quot;medium&quot;"/>
			<value option="&quot;long&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String LTrim(string)
--><function  name="ltrim" returns="String">
	<help><![CDATA[
		Removes leading spaces from a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Max(number1, number2)
--><function  name="max" returns="Numeric">
	<help><![CDATA[
		Determines the greater of two numbers.
	]]></help>
	<parameter name="number1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Mid(string, start, count)
--><function  name="mid" returns="String">
	<help><![CDATA[
		Extracts a substring from a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			The string from which the substring will be extracted.
			]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="true">
		<help><![CDATA[
		The position of the first character to retrieve.
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
		The number of characters to retrieve.
		]]></help>
	</parameter>
</function>
<!--
	Numeric Min(number1, number2)
--><function  name="min" returns="Numeric">
	<help><![CDATA[
		Determines the lesser of two numbers.
	]]></help>
	<parameter name="number1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Minute(date)
--><function  name="minute" returns="Numeric">
	<help><![CDATA[
		Extracts the minute value from a date/time object.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Month(date)
--><function  name="month" returns="Numeric">
	<help><![CDATA[
		Extracts the month value from a date/time object.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String MonthAsString(month_number)
--><function  name="monthasstring" returns="String">
	<help><![CDATA[
	]]></help>
	<parameter name="month_number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	DateTime Now()
--><function  name="now" returns="DateTime">
	<help><![CDATA[
		Gets the current date and time of the computer running the
		CFML server.
	]]></help>
</function>
<!--
	String NumberFormat(number [, mask ])
--><function  name="numberformat" returns="String">
	<help><![CDATA[
		Creates a custom-formatted number value. For international
		number formatting use LSNumberFormat.
		[mask - quicky]
		_,9 Digit placeholder; . decimal point; 0 Pads with zeros;
 		( ) less than zero, puts parentheses around the mask
 		+ plus sign before positive number minus before negative
 		- a space before positive minus sign before negative
 		, Separates every third decimal place with a comma.
 		L,C Left-justifies or center-justifies number
 		$ dollar sign before formatted number.
 		^ Separates left and right formatting.
 	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String ParagraphFormat(string)
--><function  name="paragraphformat" returns="String">
	<help><![CDATA[
		Replaces characters in a string:
		 * Single newline characters (CR/LF sequences) with spaces
		 * Double newline characters with HTML paragraph tags (<p>)
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	DateTime ParseDateTime(date/time-string [, pop-conversion ] )
--><function  name="parsedatetime" returns="DateTime">
	<help><![CDATA[
		Parses a date/time string according to the English (U.S.)
		locale conventions. (To format a date/time string for other
		locales, use the LSParseDateTime function.)
	]]></help>
	<parameter name="dt_string" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="pop_conversion" type="String" required="false">
		<help><![CDATA[
			- standard: (the default) function does no conversion.
			- pop: specifies that the date/time string is in POP format,
			  which includes the local time of the sender and a time-zone
			  offset from UTC. ColdFusion applies the offset and returns
			  a value with the UTC time.
		]]></help>
		<values default="&quot;standard&quot;">
			<value option="&quot;standard&quot;"/>
			<value option="&quot;pop&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Pi()
--><function  name="pi" returns="Numeric">
	<help><![CDATA[
		Gets the mathematical constant p, accurate to 15 digits.
		The number 3.14159265358979.
	]]></help>
</function>
<!--
	void PreserveSingleQuotes(variable)
--><function  name="preservesinglequotes" returns="void">
	<help><![CDATA[
		Prevents CFML from automatically escaping single
		quotation mark characters that are contained in a variable.
		CFML does not evaluate the argument.

		Note: ColdFusion automatically escapes simple-variable,
		array-variable, and structure-variable references within a
		cfquery tag body or block.
	]]></help>
	<parameter name="variable" type="String" required="true">
		<help><![CDATA[
			Variable that contains a string in which to preserve
			single quotation marks.
		]]></help>
	</parameter>
</function>
<!--
	Numeric Quarter(date)
--><function  name="quarter" returns="Numeric">
	<help><![CDATA[
		Calculates the quarter of the year in which a date falls.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	Numeric QueryAddColumn(query, column-name[, datatype], array-name)
--><function  name="queryaddcolumn" returns="Numeric">
	<help><![CDATA[
		Adds a column to a query and populates its rows with the
		contents of a one-dimensional array. Pads query columns,
		if necessary, to ensure that all columns have the same number
		of rows.
	]]></help>
	<parameter name="query" type="Query" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="column_name" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="datatype" type="String" required="false">
		<help><![CDATA[
			Column data type.
		]]></help>
		<values>
			<value option="&quot;Integer&quot;"/>
			<value option="&quot;BigInt&quot;"/>
			<value option="&quot;Double&quot;"/>
			<value option="&quot;Decimal&quot;"/>
			<value option="&quot;VarChar&quot;"/>
			<value option="&quot;Binary&quot;"/>
			<value option="&quot;Bit&quot;"/>
			<value option="&quot;Time&quot;"/>
			<value option="&quot;Data&quot;"/>
		</values>
	</parameter>
	<parameter name="array_name" type="Array" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric QueryAddRow(query [, number ])
--><function  name="queryaddrow" returns="Numeric">
	<help><![CDATA[
		Adds a specified number of empty rows to a query.
	]]></help>
	<parameter name="query" type="Query" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Query QueryNew(columnlist [, columntypelist])
--><function  name="querynew" returns="Query">
	<help><![CDATA[
		Creates an empty query (query object).
	]]></help>
	<parameter name="columnlist" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one. Delimited list
			of column names, or an empty string.
		]]></help>
	</parameter>
	<parameter name="columntypelist" type="String" required="false">
		<help><![CDATA[
			Comma-delimited list specifying column data types.
		]]></help>
		<values>
				<value option="&quot;Integer&quot;"/>
				<value option="&quot;BigInt&quot;"/>
				<value option="&quot;Double&quot;"/>
				<value option="&quot;Decimal&quot;"/>
				<value option="&quot;VarChar&quot;"/>
				<value option="&quot;Binary&quot;"/>
				<value option="&quot;Bit&quot;"/>
				<value option="&quot;Time&quot;"/>
				<value option="&quot;Data&quot;"/>
		</values>
	</parameter>
</function>
<!--
	boolean QuerySetCell(query, column_name, value [, row_number ])
--><function  name="querysetcell" returns="boolean">
	<help><![CDATA[
		Sets a cell to a value. If no row number is specified,
		the cell on the last row is set.
	]]></help>
	<parameter name="query" type="Query" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="column" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="row" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String QuotedValueList(query.column [, delimiter ])
--><function  name="quotedvaluelist" returns="String">
	<help><![CDATA[
		Gets the values of each record returned from an executed query.
		CFML does not evaluate the arguments
	]]></help>
	<parameter name="column" type="QueryColumn" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="chr(9)"/>
			<value option="chr(10)"/>
			<value option="chr(13)"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Rand([algorithm])
--><function  name="rand" returns="Numeric">
	<help><![CDATA[
		Generates a pseudo-random number in the range 0 - 1.
	]]></help>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
		The algorithm to use to generated the random number.
	]]></help>
		<values default="&quot;CFMX_COMPAT&quot;">
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;SHA1PRNG&quot;"/>
			<value option="&quot;IBMSecureRandom&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Randomize(number[, algorithm])
--><function  name="randomize" returns="Numeric">
	<help><![CDATA[
		Seeds the pseudo-random number generator with an
		integer number, ensuring repeatable number patterns.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
			The algorithm to use to generated the random number.
		]]></help>
		<values default="&quot;CFMX_COMPAT&quot;">
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;SHA1PRNG&quot;"/>
			<value option="&quot;IBMSecureRandom&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Numeric RandRange(number1, number2[, algorithm])
--><function  name="randrange" returns="Numeric">
	<help><![CDATA[
		Generates a random integer between two specified numbers.
		Requests for random integers that are greater than 100,000,000
		result in non-random numbers, to prevent overflow during
		internal computations.
	]]></help>
	<parameter name="number1" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="number2" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="algorithm" type="String" required="false">
		<help><![CDATA[
		The algorithm to use to generated the random number.
		]]></help>
		<values default="&quot;CFMX_COMPAT&quot;">
			<value option="&quot;CFMX_COMPAT&quot;"/>
			<value option="&quot;SHA1PRNG&quot;"/>
			<value option="&quot;IBMSecureRandom&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Object REFind(reg_expression, string [, start ][, returnsubexpressions ])
--><function  name="refind" returns="Object">
	<help><![CDATA[
	]]></help>
	<parameter name="reg_expression" type="Regex" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one. String in which
			to search.
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
		<values default="1">
			<value option="1"/>
		</values>
	</parameter>
	<parameter name="returnsubexpressions" type="boolean" required="false">
		<help><![CDATA[
			True: if the regular expression is found, the first array
				element contains the length and position, respectively,
				of the first match.
				If the regular expression contains parentheses that
					group subexpressions, each subsequent array element
					contains the length and position, respectively, of
					the first occurrence of each group.
				If the regular expression is not found, the arrays each
					contain one element with the value 0.
			False: the function returns the position in the string
				where the match begins. Default.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	Object REFindNoCase(reg_expression, string [, start] [, returnsubexpressions] )
--><function  name="refindnocase" returns="Object">
	<help><![CDATA[
		Uses a regular expression (RE) to search a string for a pattern,
		 starting from a specified position. The search is
		 case-insensitive.
	]]></help>
	<parameter name="reg_expression" type="Regex" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one. String in which
			to search.
		]]></help>
		<values default="1">
			<value option="1"/>
		</values>
	</parameter>
	<parameter name="start" type="Numeric" required="false">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="returnsubexpressions" type="boolean" required="false">
		<help><![CDATA[
			True: if the regular expression is found, the first array
				element contains the length and position, respectively,
				of the first match.
				If the regular expression contains parentheses that
					group subexpressions, each subsequent array element
					contains the length and position, respectively, of
					the first occurrence of each group.
				If the regular expression is not found, the arrays each
					contain one element with the value 0.
			False: the function returns the position in the string
				where the match begins. Default.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	void ReleaseComObject(objectName)
--><function  name="releasecomobject" returns="void">
	<help><![CDATA[
		Releases a COM Object and frees up resources that it used.
	]]></help>
	<parameter name="objectName" type="Object" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String RemoveChars(string, start, count)
--><function  name="removechars" returns="String">
	<help><![CDATA[
		Removes characters from a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="start" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String RepeatString(string, count)
--><function  name="repeatstring" returns="String">
	<help><![CDATA[
		Creates a string that contains a specified number of
		repetitions of the specified string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String Replace(string, substring1, substring2 [, scope ])
--><function  name="replace" returns="String">
	<help><![CDATA[
		Replaces occurrences of substring1 in a string with substring2,
		in a specified scope. The search is case-sensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="substring1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="substring2" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			* one: replace the first occurrence (default)
			* all: replace all occurrences
		]]></help>
		<values>
			<value option="&quot;one&quot;"/>
			<value option="&quot;all&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ReplaceList(string, list1, list2)
--><function  name="replacelist" returns="String">
	<help><![CDATA[
		Replaces occurrences of the elements from a delimited list
		in a string with corresponding elements from another delimited
		list. The search is case-sensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="list1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="list2" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String ReplaceNoCase(string, substring1, substring2 [, scope ])
--><function  name="replacenocase" returns="String">
	<help><![CDATA[
		Replaces occurrences of substring1 with substring2, in the
		specified scope. The search is case-insensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string (or variable that contains one) within which to
			replace substring
		]]></help>
	</parameter>
	<parameter name="substring1" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="substring2" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			* one: Replace the first occurrence (default)
			* all: Replace all occurrences
		]]></help>
		<values>
			<value option="&quot;one&quot;"/>
			<value option="&quot;all&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String REReplace(string, reg_expression, substring [, scope ])
--><function  name="rereplace" returns="String">
	<help><![CDATA[
		Uses a regular expression (RE) to search a string for a string
		pattern and replace it with another. The search is
		case-sensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
	<parameter name="reg_expression" type="Regex" required="true">
		<help><![CDATA[
			Regular expression to replace.
		]]></help>
	</parameter>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one. Replaces
			reg_expression
		]]></help>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			* one: Replace the first occurrence of the regular
				expression. Default.
			* all: Replace all occurrences of the regular expression.
		]]></help>
		<values>
			<value option="&quot;one&quot;"/>
			<value option="&quot;all&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String REReplaceNoCase(string, reg_expression, substring [, scope ])
--><function  name="rereplacenocase" returns="String">
	<help><![CDATA[
		Uses a regular expression to search a string for a string
		pattern and replace it with another. The search is
		case-insensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
	<parameter name="reg_expression" type="Regex" required="true">
		<help><![CDATA[
			Regular expression to replace.
		]]></help>
	</parameter>
	<parameter name="substring" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one. Replaces
			reg_expression
		]]></help>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			* one: Replace the first occurrence of the regular
				expression. Default.
			* all: Replace all occurrences of the regular expression.
		]]></help>
		<values>
			<value option="&quot;one&quot;"/>
			<value option="&quot;all&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String Reverse(string)
--><function  name="reverse" returns="String">
	<help><![CDATA[
		Reverses the order of items, such as the characters in a
		string, the digits in a number, or the elements in an array.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	String Right(string, count)
--><function  name="right" returns="String">
	<help><![CDATA[
		Gets a specified number of characters from a string,
		beginning at the right.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="count" type="Numeric" required="true">
		<help><![CDATA[
			A positive integer or a variable that contains one.
			Number of characters to return.
		]]></help>
	</parameter>
</function>
<!--
	String RJustify(string, length)
--><function  name="rjustify" returns="String">
	<help><![CDATA[
		Right justifies characters of a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="length" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Round(number)
--><function  name="round" returns="Numeric">
	<help><![CDATA[
		Rounds a number to the closest integer.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String RTrim(string)
--><function  name="rtrim" returns="String">
	<help><![CDATA[
		Removes spaces from the end of a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	Numeric Second(date)
--><function  name="second" returns="Numeric">
	<help><![CDATA[
		Extracts the ordinal for the second from a date/time object.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
			A date/time object
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String SendGatewayMessage(gatewayID, data)
--><function  name="sendgatewaymessage" returns="String">
	<help><![CDATA[
		Sends an outgoing message through a ColdFusion MX event gateway.
	]]></help>
	<parameter name="gatewayID" type="String" required="true">
		<help><![CDATA[
			Identifier of the gateway to send the message.
		]]></help>
	</parameter>
	<parameter name="data" type="Struct" required="true">
		<help><![CDATA[
                     A ColdFusion structure.
		]]></help>
	</parameter>
</function>
<!--
	void SetEncoding(scope_name,charset)
--><function  name="setencoding" returns="void">
	<help><![CDATA[
		Sets the character encoding (character set) of Form and URL
		scope variable values; used when the character encoding of
		the input to a form, or the character encoding of a URL, is
		not in UTF-8 encoding.
	]]></help>
	<parameter name="scope_name" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="charset" type="String" required="true">
		<help><![CDATA[
			The character encoding in which text in the scope
			variables is encoded.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jp&quot;"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String SetLocale(new_locale)
--><function  name="setlocale" returns="String">
	<help><![CDATA[
		Sets the country/language locale for CFML processing
		and the page returned to the client. The locale value
		determines the default format of date, time, number, and
		currency values, according to language and regional
		conventions.
	]]></help>
	<parameter name="new_locale" type="String" required="true">
		<help><![CDATA[
			The name of a locale; for example, "English (US)"
		]]></help>
		<values>
			<value option="&quot;Chinese (China)&quot;"/>
			<value option="&quot;Chinese (Hong Kong)&quot;"/>
			<value option="&quot;Chinese (Taiwan)&quot;"/>
			<value option="&quot;Dutch (Belgian)&quot;"/>
			<value option="&quot;Dutch (Standard)&quot;"/>
			<value option="&quot;English (Australian)&quot;"/>
			<value option="&quot;English (Canadian)&quot;"/>
			<value option="&quot;English (New Zealand)&quot;"/>
			<value option="&quot;English (US)&quot;"/>
			<value option="&quot;English (UK)&quot;"/>
			<value option="&quot;French (Belgian)&quot;"/>
			<value option="&quot;French (Canadian)&quot;"/>
			<value option="&quot;French (Standard)&quot;"/>
			<value option="&quot;French (Swiss)&quot;"/>
			<value option="&quot;German (Austrian)&quot;"/>
			<value option="&quot;German (Standard)&quot;"/>
			<value option="&quot;German (Swiss)&quot;"/>
			<value option="&quot;Italian (Standard)&quot;"/>
			<value option="&quot;Italian (Swiss)&quot;"/>
			<value option="&quot;Japanese&quot;"/>
			<value option="&quot;Korean&quot;"/>
			<value option="&quot;Norwegian (Bokmal)&quot;"/>
			<value option="&quot;Norwegian (Nynorsk)&quot;"/>
			<value option="&quot;Portuguese (Brazilian)&quot;"/>
			<value option="&quot;Portuguese (Standard)&quot;"/>
			<value option="&quot;Spanish (Modern)&quot;"/>
			<value option="&quot;Spanish (Standard)&quot;"/>
			<value option="&quot;Swedish&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String SetProfileString(iniPath, section, entry, value)
--><function  name="setprofilestring" returns="String">
	<help><![CDATA[
		Sets the value of a profile entry in an initialization file.
	]]></help>
	<parameter name="inipath" type="String" required="true">
		<help><![CDATA[
			Absolute path of initialization file
		]]></help>
	</parameter>
	<parameter name="section" type="String" required="true">
		<help><![CDATA[
			Section of the initialization file in which the entry is
			to be set
		]]></help>
	</parameter>
	<parameter name="entry" type="String" required="true">
		<help><![CDATA[
			Name of the entry to set
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			Value to which to set the entry
		]]></help>
	</parameter>
</function>
<!--
	void SetVariable(name, value)
--><function  name="setvariable" returns="void">
	<help><![CDATA[
		This function is no longer required in well-formed CFML
		pages. Sets a variable in the name parameter to the value of the
		value parameter.
	]]></help>
	<parameter name="name" type="String" required="true">
		<help><![CDATA[
			Variable name
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			A string, the name of a string, or a number
		]]></help>
	</parameter>
</function>
<!--
	Numeric Sgn(number)
--><function  name="sgn" returns="Numeric">
	<help><![CDATA[
		Determines the sign of a number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	Numeric Sin(number)
--><function  name="sin" returns="Numeric">
	<help><![CDATA[
		Calculates the sine of an angle that is entered in radians.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String SpanExcluding(string, set)
--><function  name="spanexcluding" returns="String">
	<help><![CDATA[
		Gets characters from a string, from the beginning to a
		character that is in a specified set of characters. The
		search is case-sensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="set" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains a set of characters.
			Must contain one or more characters
		]]></help>
	</parameter>
</function>
<!--
	String SpanIncluding(string, set)
--><function  name="spanincluding" returns="String">
	<help><![CDATA[
		Gets characters from a string, from the beginning to a
		character that is not in a specified set of characters. The
		search is case-sensitive.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="set" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains a set of characters.
			Must contain one or more characters
		]]></help>
	</parameter>
</function>
<!--
	Numeric Sqr(number)
--><function  name="sqr" returns="Numeric">
	<help><![CDATA[
		Calculates the square root of a number.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
			A positive integer or a variable that contains one.
			Number whose square root to get.
		]]></help>
	</parameter>
</function>
<!--
	String StripCR(string)
--><function  name="stripcr" returns="String">
	<help><![CDATA[
		Deletes return characters from a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	boolean StructAppend(struct1, struct2, overwriteFlag)
--><function  name="structappend" returns="boolean">
	<help><![CDATA[
		Appends one structure to another.
		CFML MX: Changed behavior: this function can be used on
		XML objects.
	]]></help>
	<parameter name="struct1" type="Struct" required="true">
		<help><![CDATA[
			Structure to append.
		]]></help>
	</parameter>
	<parameter name="struct2" type="Struct" required="true">
		<help><![CDATA[
			Structure that contains the data to append to struct1
		]]></help>
	</parameter>
	<parameter name="overwriteFlag" type="boolean" required="false">
		<help><![CDATA[
			Yes: values in struct2 overwrite corresponding values in
			struct1. Default.
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	boolean StructClear(structure)
--><function  name="structclear" returns="boolean">
	<help><![CDATA[
		Removes all data from a structure.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure to clear
		]]></help>
	</parameter>
</function>
<!--
	Struct StructCopy(structure)
--><function  name="structcopy" returns="Struct">
	<help><![CDATA[
		Copies a structure. Copies top-level keys, values, and arrays
		in the structure by value; copies nested structures by
		reference.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure to copy
		]]></help>
	</parameter>
</function>
<!--
	Numeric StructCount(structure)
--><function  name="structcount" returns="Numeric">
	<help><![CDATA[
		Counts the keys in a structure.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure to access
		]]></help>
	</parameter>
</function>
<!--
	boolean StructDelete(structure, key [, indicatenotexisting ])
--><function  name="structdelete" returns="boolean">
	<help><![CDATA[
		Removes an element from a structure.
	]]></help>
	<parameter name="structure" type="String" required="true">
		<help><![CDATA[
			Structure or a variable that contains one. Contains element
			to remove
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Element to remove
		]]></help>
	</parameter>
	<parameter name="indicatenotexisting" type="boolean" required="false">
		<help><![CDATA[
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	Object StructFind(structure, key)
--><function  name="structfind" returns="Object">
	<help><![CDATA[
		Determines the value associated with a key in a structure.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure that contains the value to return
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Key whose value to return
		]]></help>
	</parameter>
</function>
<!--
	Array StructFindKey(top, value, scope)
--><function  name="structfindkey" returns="Array">
	<help><![CDATA[
		Searches recursively through a substructure of nested arrays,
		structures, and other elements, for structures whose values
		match the search key in the value parameter.
	]]></help>
	<parameter name="top" type="Object" required="true">
		<help><![CDATA[
			CFML object (structure or array) from which to start
			search. This attribute requires an object, not a name of
			an object.
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			String or a variable that contains one for which to search.
		]]></help>
	</parameter>
	<parameter name="scope" type="String" required="true">
		<help><![CDATA[
			* one: returns one matching key. Default.
			* all: returns all matching keys
		]]></help>
		<values>
			<value option="one"/>
			<value option="all"/>
		</values>
	</parameter>
</function>
<!--
	Array StructFindValue( top, value [, scope])
--><function  name="structfindvalue" returns="Array">
	<help><![CDATA[
		Searches recursively through a substructure of nested arrays,
		structures, and other elements for structures with values that
		match the search key in the value parameter.
	]]></help>
	<parameter name="top" type="Object" required="true">
		<help><![CDATA[
			CFML object (a structure or an array) from which to
			start search. This attribute requires an object, not a
			name of an object.
		]]></help>
	</parameter>
	<parameter name="value" type="String" required="true">
		<help><![CDATA[
			String or a variable that contains one for which to search.
			The type must be a simple object. Arrays and structures
			are not supported.
		]]></help>
	</parameter>
	<parameter name="scope" type="String" required="false">
		<help><![CDATA[
			one: function returns one matching key (default)
			all: function returns all matching keys
		]]></help>
		<values>
			<value option="one"/>
			<value option="all"/>
		</values>
	</parameter>
</function>
<!--
	Struct StructGet(pathDesired)
--><function  name="structget" returns="Struct">
	<help><![CDATA[
		Gets a structure(s) from a specified path.
	]]></help>
	<parameter name="pathdesired" type="String" required="true">
		<help><![CDATA[
			Pathname of variable that contains structure or array from
			which CFML retrieves structure
		]]></help>
	</parameter>
</function>
<!--
	boolean StructInsert(structure, key, value [, allowoverwrite ])
--><function  name="structinsert" returns="boolean">
	<help><![CDATA[
		Inserts a key-value pair into a structure.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure to contain the new key-value pair.
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Key that contains the inserted value.
		]]></help>
	</parameter>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
			Value to add.
		]]></help>
	</parameter>
	<parameter name="allowoverwrite" type="boolean" required="false">
		<help><![CDATA[
			Whether to allow overwriting a key. Default: False.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	boolean StructIsEmpty(structure)
--><function  name="structisempty" returns="boolean">
	<help><![CDATA[
		Determines whether a structure contains data.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure to test
		]]></help>
	</parameter>
</function>
<!--
	Array StructKeyArray(structure)
--><function  name="structkeyarray" returns="Array">
	<help><![CDATA[
		Finds the keys in a CFML structure.
		An array of keys; if structure does not exist, CFML
		throws an exception.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	boolean StructKeyExists(structure, "key")
--><function  name="structkeyexists" returns="boolean">
	<help><![CDATA[
		Determines whether a specific key is present in a structure.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Name of structure to test
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Key to test
		]]></help>
	</parameter>
</function>
<!--
	String StructKeyList(structure [, delimiter])
--><function  name="structkeylist" returns="String">
	<help><![CDATA[
		Extracts keys from a CFML structure.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure from which to extract a list of keys
		]]></help>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
			Character that separates keys in list. Default: comma.
		]]></help>
		<values default=",">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="chr(9)"/>
			<value option="chr(10)"/>
			<value option="chr(13)"/>
		</values>
	</parameter>
</function>
<!--
	Struct StructNew()
--><function  name="structnew" returns="Struct">
	<help><![CDATA[
		Creates a structure.
	]]></help>
</function>
<!--
	Array StructSort(base, sortType, sortOrder, pathToSubElement)
--><function  name="structsort" returns="Array">
	<help><![CDATA[
		Returns a sorted array of the top level keys in a structure.
		Sorts using alphabetic or numeric sorting, and can sort based
		on the values of any structure element.
	]]></help>
	<parameter name="base" type="Struct" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="sorttype" type="String" required="true">
		<help><![CDATA[
			* numeric
			* text: case sensitive Default.
			* textnocase
		]]></help>
		<values>
			<value option="&quot;numeric&quot;"/>
			<value option="&quot;text&quot;"/>
			<value option="&quot;textnocase&quot;"/>
		</values>
	</parameter>
	<parameter name="sortorder" type="String" required="true">
		<help><![CDATA[
			* asc: ascending (a to z) sort order. Default.
			* desc: descending (z to a) sort order
		]]></help>
	</parameter>
	<parameter name="pathtosubelement" type="String" required="true">
		<help><![CDATA[
			String or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	boolean StructUpdate(structure, key, value)
--><function  name="structupdate" returns="boolean">
	<help><![CDATA[
		Updates a key with a value.
	]]></help>
	<parameter name="structure" type="Struct" required="true">
		<help><![CDATA[
			Structure to update
		]]></help>
	</parameter>
	<parameter name="key" type="String" required="true">
		<help><![CDATA[
			Key, the value of which to update
		]]></help>
	</parameter>
	<parameter name="value" type="Object" required="true">
		<help><![CDATA[
			New value
		]]></help>
	</parameter>
</function>
<!--
	Numeric Tan(number)
--><function  name="tan" returns="Numeric">
	<help><![CDATA[
		Calculates the tangent of an angle that is entered in radians.
	]]></help>
	<parameter name="number" type="Numeric" required="true">
		<help><![CDATA[
			Angle, in radians, for which to calculate the tangent
		]]></help>
	</parameter>
</function>
<!--
	String TimeFormat(time [, mask ])
--><function  name="timeformat" returns="String">
	<help><![CDATA[
		Formats a time value using US English time formatting
		conventions. If no mask is specified, returns a time value
		using the hh:mm tt format. For international time formatting,
		see LSTimeFormat.
		[mask]
		h,hh,H,HH: Hours; m,mm: Minutes; s,ss: Seconds;
		l: Milliseconds; t: A or P; tt: AM or PM
		"short" = h:mm tt; "medium" = h:mm:ss tt
	]]></help>
	<parameter name="time" type="DateTime" required="true">
		<help><![CDATA[
			A date/time value or string to convert
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
	<parameter name="mask" type="String" required="false">
		<help><![CDATA[
			Masking characters that determine the format
		]]></help>
		<values>
			<value option="&quot;short&quot;"/>
			<value option="&quot;medium&quot;"/>
			<value option="&quot;long&quot;"/>
			<value option="&quot;full&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String ToBase64(string_or_object[, encoding])
--><function  name="tobase64" returns="String">
	<help><![CDATA[
		Calculates the Base64 representation of a string or binary
		object. The Base64 format uses printable characters, allowing
		binary data to be sent in forms and e-mail, and stored in a
		database or file.
	]]></help>
	<parameter name="string_or_object" type="Object" required="true">
		<help><![CDATA[
			A string, the name of a string, or a binary object.
		]]></help>
	</parameter>
	<parameter name="encoding" type="String" required="false">
		<help><![CDATA[
			For a string, defines how characters are represented in a
			byte array.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jp&quot;"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	Binary ToBinary(string_in_Base64 or binary_value)
--><function  name="tobinary" returns="Binary">
	<help><![CDATA[
		Calculates the binary representation of Base64-encoded data.
	]]></help>
	<parameter name="base64_or_object" type="Object" required="true">
		<help><![CDATA[
			A string or a variable that contains one:
			* In Base64 format to convert to binary
			* In binary format to test whether it is valid
		]]></help>
	</parameter>
</function>
<!--
	String ToScript(cfvar, javascriptvar[, outputformat[, asformat]])
--><function  name="toscript" returns="String">
	<help><![CDATA[
		Creates a JavaScript or ActionScript expression that
		assigns the value of a ColdFusion variable to a JavaScript
		or ActionScript variable. This function can convert
		ColdFusion strings, numbers, arrays, structures, and
		queries to JavaScript or ActionScript syntax that defines
		equivalent variables and values.
	]]></help>
	<parameter name="cfvar" type="Object" required="true">
		<help><![CDATA[
			A ColdFusion variable. This can contain one of the following:
			String, Number, Array, Structure or Query.
		]]></help>
	</parameter>
	<parameter name="javascriptvar" type="String" required="true">
		<help><![CDATA[
			A string that specifies the name of the JavaScript variable
			that the ToScript function creates.
		]]></help>
	</parameter>
	<parameter name="outputformat" type="boolean" required="false">
		<help><![CDATA[
			A Boolean value that determines whether to create
			WDDX (JavaScript) or ActionScript style output for
			structures and queries.
			Default: true
		]]></help>
		<values default="true">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
	<parameter name="asformat" type="boolean" required="false">
		<help><![CDATA[
			A Boolean value that specifies whether to use
			ActionScript shortcuts in the script.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	String ToString(any_value[, encoding])
--><function  name="tostring" returns="String">
	<help><![CDATA[
		Converts a value to a string.
	]]></help>
	<parameter name="any_value" type="Object" required="true">
		<help><![CDATA[
			Value to convert to a string
		]]></help>
	</parameter>
	<parameter name="encoding" type="String" required="false">
		<help><![CDATA[
			The character encoding (character set) of the string.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jp&quot;"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String Trim(string)
--><function  name="trim" returns="String">
	<help><![CDATA[
		Removes leading and trailing spaces from a string.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	String UCase(string)
--><function  name="ucase" returns="String">
	<help><![CDATA[
		Converts the alphabetic characters in a string to uppercase.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	String URLDecode(urlEncodedString[, charset])
--><function  name="urldecode" returns="String">
	<help><![CDATA[
		Decodes a URL-encoded string.
	]]></help>
	<parameter name="urlencodedstring" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			The character encoding in which the string is encoded.
		]]></help>
		<values>
			<value option="&quot;utf-8&quot;"/>
			<value option="&quot;iso-8859-1&quot;"/>
			<value option="&quot;windows-1252&quot;"/>
			<value option="&quot;us-ascii&quot;"/>
			<value option="&quot;shift_jis&quot;"/>
			<value option="&quot;iso-2022-jp&quot;"/>
			<value option="&quot;euc-jp&quot;"/>
			<value option="&quot;euc-kr&quot;"/>
			<value option="&quot;big5&quot;"/>
			<value option="&quot;euc-cn&quot;"/>
			<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	String URLEncodedFormat(string [, charset ])
--><function  name="urlencodedformat" returns="String">
	<help><![CDATA[
		Generates a URL-encoded string. For example, it replaces spaces
		with %20, and non-alphanumeric characters with equivalent
		hexadecimal escape sequences. Passes arbitrary strings within a
		URL.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
	<parameter name="charset" type="String" required="false">
		<help><![CDATA[
			The character encoding in which the string is encoded.
		]]></help>
		<values>
				<value option="&quot;utf-8&quot;"/>
				<value option="&quot;iso-8859-1&quot;"/>
				<value option="&quot;windows-1252&quot;"/>
				<value option="&quot;us-ascii&quot;"/>
				<value option="&quot;shift_jis&quot;"/>
				<value option="&quot;iso-2022-jp&quot;"/>
				<value option="&quot;euc-jp&quot;"/>
				<value option="&quot;euc-kr&quot;"/>
				<value option="&quot;big5&quot;"/>
				<value option="&quot;euc-cn&quot;"/>
				<value option="&quot;utf-16&quot;"/>
		</values>
	</parameter>
</function>
<!--
	URL URLSessionFormat(request_URL)
--><function  name="urlsessionformat" returns="URL">
	<help><![CDATA[
		Depending on whether a client computer accepts cookies, this
		function does the following:
		* If the client does not accept cookies: automatically appends
			all required client identification information to a URL
		* If the client accepts cookies: does not append information
	]]></help>
	<parameter name="requesturl" type="URL" required="true">
		<help><![CDATA[
			URL of a CFML page
		]]></help>
		<values>
			<value option="cgi.script_name"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Val(string)
--><function  name="val" returns="Numeric">
	<help><![CDATA[
		Converts numeric characters that occur at the beginning of a
		string to a number. If conversion fails, returns zero.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	String ValueList(query.column [, delimiter ])
--><function  name="valuelist" returns="String">
	<help><![CDATA[
		Inserts a delimiter between each value in an executed query.
		CFML does not evaluate the arguments.
		A delimited list of the values of each record returned from an
		executed query
	]]></help>
	<parameter name="column" type="QueryColumn" required="true">
		<help><![CDATA[
			Name of an executed query and column. Separate query name
			and column name with a period.
		]]></help>
	</parameter>
	<parameter name="delimiter" type="String" required="false">
		<help><![CDATA[
			A delimiter character to separate column data items.
			Default: comma (,).
		]]></help>
		<values default="&quot;,&quot;">
			<value option="&quot;,&quot;"/>
			<value option="&quot;|&quot;"/>
			<value option="&quot;;&quot;"/>
			<value option="chr(9)"/>
			<value option="chr(10)"/>
			<value option="chr(13)"/>
		</values>
	</parameter>
</function>
<!--
	Numeric Week(date)
--><function  name="week" returns="Numeric">
	<help><![CDATA[
		From a date/time object, determines the week number within
		the year. An integer in the range 1-53; the ordinal of the
		week, within the year.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
			A date/time object in the range 100 AD-9999 AD.
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String Wrap(string, limit[, strip])
--><function  name="wrap" returns="String">
	<help><![CDATA[
		Wraps text so that each line has a specified maximum number
		of characters.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			String or variable that contains one. The text to wrap.
		]]></help>
	</parameter>
	<parameter name="limit" type="Numeric" required="true">
		<help><![CDATA[
			Positive integer maximum number of characters to allow on
			a line.
		]]></help>
	</parameter>
	<parameter name="strip" type="boolean" required="false">
		<help><![CDATA[
			whether to remove all existing newline and carriage return
			characters in the input string with spaces before wrapping
			the text. Default: False.
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	String WriteOutput(string)
--><function  name="writeoutput" returns="String">
	<help><![CDATA[
		Appends text to the page-output stream.
		This function writes to the page-output stream regardless of
		conditions established by the cfsetting tag.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
			A string, or a variable that contains one
		]]></help>
	</parameter>
</function>
<!--
	Numeric XmlChildPos(elem, childName, N)
--><function  name="xmlchildpos" returns="Numeric">
	<help><![CDATA[
		Gets the position of a child element within an XML document
		object.
		The position, in an XmlChildren array, of the Nth child that
		has the specified name.
	]]></help>
	<parameter name="elem" type="Node" required="true">
		<help><![CDATA[
			XML element within which to search
		]]></help>
	</parameter>
	<parameter name="childname" type="String" required="true">
		<help><![CDATA[
			XML child element for which to search
		]]></help>
	</parameter>
	<parameter name="n" type="Numeric" required="true">
		<help><![CDATA[
			Index of XMLchild element for which to search
		]]></help>
	</parameter>
</function>
<!--
	Object XmlElemNew(xmlObj[, namespace], childName)
--><function  name="xmlelemnew" returns="Object">
	<help><![CDATA[
		Creates an XML document object element
	]]></help>
	<parameter name="xmlobj" type="Object" required="true">
		<help><![CDATA[
			The name of an XML object. An XML document or an element.
		]]></help>
	</parameter>
	<parameter name="namespace" type="String" required="false">
		<help><![CDATA[
			URI of the namespace to which this element belongs.
		]]></help>
	</parameter>
	<parameter name="childname" type="String" required="true">
		<help><![CDATA[
			The name of the element to create. This element becomes a
			child element of xmlObj in the tree.
		]]></help>
	</parameter>
</function>
<!--
	String XmlFormat(string)
--><function  name="xmlformat" returns="String">
	<help><![CDATA[
		Escapes special XML characters in a string, so that the
		string is safe to use with XML.
	]]></help>
	<parameter name="String" type="String" required="true">
		<help><![CDATA[
		]]></help>
	</parameter>
</function>
<!--
	String XmlGetNodeType(xmlNode)
--><function  name="xmlgetnodetype" returns="String">
	<help><![CDATA[
		Determines the type of an XML document object node.
	]]></help>
	<parameter name="xmlNode" type="Object" required="true">
		<help><![CDATA[
		An XML DOM object node.
		]]></help>
	</parameter>
</function>
<!--
	Object XmlNew([caseSensitive])
--><function  name="xmlnew" returns="Object">
	<help><![CDATA[
		Creates an XML document object.
	]]></help>
	<parameter name="casesensitive" type="boolean" required="false">
		<help><![CDATA[
			Maintains the case of document elements and attributes.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
<!--
	Object XmlParse(xmlText[, caseSensitive[, validator]])
--><function  name="xmlparse" returns="Object">
	<help><![CDATA[
		Converts an XML document that is represented as a string
		variable into an XML document object.
	]]></help>
	<parameter name="xmlstring" type="String" required="true">
		<help><![CDATA[
			Any of the following:
			 - A string containing XML text.
			 - The name of an XML file.
			 - The URL of an XML file; valid protocol identifiers
			   include http, https, ftp, and file.
		]]></help>
	</parameter>
	<parameter name="casesensitive" type="boolean" required="false">
		<help><![CDATA[
			Maintains the case of document elements and attributes.
			Default: false
		]]></help>
		<values default="false">
			<value option="true"/>
 			<value option="false"/>
		</values>
	</parameter>
	<parameter name="validator" type="String" required="false">
		<help><![CDATA[
			Any of the following:
			 - The name of a Document Type Definition (DTD) or
			   XML Schema file.
			 - The URL of a DTD or Schema file; valid protocol
			   identifiers include http, https, ftp, and file.
			 - A string representation of a DTD or Schema.
			 - An empty string; in this case, the XML file must
			   contain an embedded DTD or Schema identifier, which
			   is used to validate the document.
		]]></help>
	</parameter>
</function>
<!--
	Array XmlSearch(xmlDoc, xPathString)
--><function  name="xmlsearch" returns="Array">
	<help><![CDATA[
	]]></help>
	<parameter name="xmldoc" type="Object" required="true">
		<help><![CDATA[
			XML document object
		]]></help>
	</parameter>
	<parameter name="xpathstring" type="String" required="true">
		<help><![CDATA[
			XPath expression
		]]></help>
	</parameter>
</function>
<!--
	String XmlTransform(xml, xsl[, parameters])
--><function  name="xmltransform" returns="String">
	<help><![CDATA[
		Applies an Extensible Stylesheet Language Transformation (XSLT)
		to an XML document object that is represented as a string
		variable. An XSLT converts an XML document to another format
		or representation by applying an Extensible Stylesheet
		Language (XSL) stylesheet to it.
	]]></help>
	<parameter name="xml" type="String" required="true">
		<help><![CDATA[
		An XML document in string format, or an XML document object.
		]]></help>
	</parameter>
	<parameter name="xsl" type="String" required="true">
		<help><![CDATA[
			XSLT transformation to apply; can be any of the following:
			 - A string containing XSL text.
			 - The name of an XSTLT file. Relative paths start at
			   the directory containing the current CFML page.
			 - The URL of an XSLT file; valid protocol identifiers
			   include http, https, ftp, and file. Relative paths start
			   at the directory containing the current CFML page.
		]]></help>
	</parameter>
	<parameter name="parameters" type="Struct" required="false">
		<help><![CDATA[
			A structure containing XSL template parameter name-value
			pairs to use in transforming the document. The XSL transform
			defined in the xslString parameter uses these parameter values
			in processing the xml.
		]]></help>
	</parameter>
</function>
<!--
	Struct XmlValidate(xmlDoc[, validator])
--><function  name="xmlvalidate" returns="Struct">
	<help><![CDATA[
		Uses a Document Type Definition (DTD) or XML Schema
		to validate an XML text document or an XML document object.
	]]></help>
	<parameter name="xmlDoc" type="Object" required="true">
		<help><![CDATA[
		Any of the following:
		 - A string containing an XML document.
		 - The name of an XML file.
		 - The URL of an XML file; valid protocol identifiers
		   include http, https, ftp, and file.
		 - An XML document object, such as one generated by
		   the XmlParse function.
		]]></help>
	</parameter>
	<parameter name="validator" type="String" required="false">
		<help><![CDATA[
		Any of the following:
		 - A string containing a DTD or Schema.
		 - The name of a DTD or Schema file.
		 - The URL of a DTD or Schema file; valid protocol
		   identifiers include http, https, ftp, and file.
		]]></help>
	</parameter>
</function>
<!--
	Numeric Year(date)
--><function  name="year" returns="Numeric">
	<help><![CDATA[
		From a date/time object, gets the year value.
	]]></help>
	<parameter name="date" type="DateTime" required="true">
		<help><![CDATA[
		]]></help>
		<values>
			<value option="now()"/>
		</values>
	</parameter>
</function>
<!--
	String YesNoFormat(value)
--><function  name="yesnoformat" returns="String">
	<help><![CDATA[
		Yes, for a non-zero value; No, otherwise.
	]]></help>
	<parameter name="value" type="boolean" required="true">
		<help><![CDATA[
			A number or Boolean value
		]]></help>
		<values>
			<value option="true"/>
			<value option="false"/>
		</values>
	</parameter>
</function>
	</functions>
<cfscopes>
          <scopevar name="Client" >
            <help><![CDATA[Client scope variables ]]></help>
               <scopevar name="CFID" >
                <help><![CDATA[ ]]></help>               
            </scopevar>
            <scopevar name="CFToken" >
                <help><![CDATA[ ]]></help>               
            </scopevar>
            <scopevar name="HitCount" >
                <help><![CDATA[ ]]></help>               
            </scopevar>
            <scopevar name="LastVisit" >
                <help><![CDATA[ ]]></help>               
            </scopevar>
            <scopevar name="TimeCreated" >
                <help><![CDATA[ ]]></help>               
            </scopevar>
            <scopevar name="URLToken" >
                <help><![CDATA[ ]]></help>               
            </scopevar>
            </scopevar>
            
            <scopevar name="CGI" >
                <help><![CDATA[ ]]></help>  
                    <scopevar name="AUTH_PASSWORD" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="AUTH_TYPE" >
                        <help><![CDATA[ If the server supports user authentication, and the script is protected, the protocol-specific authentication method used to validate the user. ]]></help>               
                    </scopevar>
                    <scopevar name="AUTH_USER" >
                        <help><![CDATA[ If the server supports user authentication, and the script is protected, the username the user has authenticated as. (Also available as AUTH_USER.) ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_COOKIE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_FLAGS" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>             
                    <scopevar name="CERT_ISSUER" >
                        <help><![CDATA[ Information about the authority that provided the client certificate ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_KEYSIZE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_SECRETKEYSIZE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_SERIALNUMBER" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_SERVER_ISSUER" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>             
                    <scopevar name="CERT_SERVER_SUBJECT" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CERT_SUBJECT" >
                        <help><![CDATA[ Client-specific information provided by the web server. This data typically includes the client's name, e-mail address, and so on ]]></help>               
                    </scopevar>
                    <scopevar name="CF_TEMPLATE_PATH" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CONTENT_LENGTH" >
                        <help><![CDATA[ Length of the content as given by the client. ]]></help>               
                    </scopevar>
                    <scopevar name="CONTENT_TYPE" >
                        <help><![CDATA[ For queries that have attached information, such as HTTP POST and PUT, this is the content type of the data. ]]></help>               
                    </scopevar>
                    <scopevar name="CONTEXT_PATH" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="GATEWAY_INTERFACE" >
                        <help><![CDATA[ CGI specification revision with which this server complies. Format: CGI/revision. ]]></help>               
                    </scopevar>             
                    <scopevar name="HTTPS" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTPS_KEYSIZE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTPS_SECRETKEYSIZE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTPS_SERVER_ISSUER" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTPS_SERVER_SUBJECT" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>             
                    <scopevar name="HTTP_ACCEPT" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTP_ACCEPT_ENCODING" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTP_ACCEPT_LANGUAGE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTP_CONNECTION" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTP_COOKIE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTP_HOST" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="HTTP_REFERER" >
                        <help><![CDATA[ The referring document that linked to or submitted form data. ]]></help>               
                    </scopevar>             
                    <scopevar name="HTTP_USER_AGENT" >
                        <help><![CDATA[ The browser that the client is currently using to send the request. Format: software/version library/version. ]]></help>               
                    </scopevar>
                    <scopevar name="QUERY_STRING" >
                        <help><![CDATA[ Query information that follows the ? in the URL that referenced this script. ]]></help>               
                    </scopevar>
                    <scopevar name="REMOTE_ADDR" >
                        <help><![CDATA[ IP address of the remote host making the request. ]]></help>               
                    </scopevar>
                    <scopevar name="REMOTE_HOST" >
                        <help><![CDATA[ Hostname making the request. If the server does not have this information, it sets REMOTE_ADDR and does not set REMOTE_HOST. ]]></help>               
                    </scopevar>
                    <scopevar name="REMOTE_USER" >
                        <help><![CDATA[ If the server supports user authentication, and the script is protected, the username the user has authenticated as. (Also available as AUTH_USER.) ]]></help>               
                    </scopevar>
                    <scopevar name="REQUEST_METHOD" >
                        <help><![CDATA[ Method with which the request was made. For HTTP, this is Get, Head, Post, and so on. ]]></help>               
                    </scopevar>             
                    <scopevar name="SCRIPT_NAME" >
                        <help><![CDATA[ Virtual path to the script that is executing; used for self-referencing URLs. ]]></help>               
                    </scopevar>
                    <scopevar name="SERVER_NAME" >
                        <help><![CDATA[ Server's hostname, DNS alias, or IP address as it appears in self-referencing URLs. ]]></help>               
                    </scopevar>
                    <scopevar name="SERVER_PORT" >
                        <help><![CDATA[ Port number to which the request was sent. ]]></help>               
                    </scopevar>
                    <scopevar name="SERVER_PORT_SECURE" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="SERVER_PROTOCOL" >
                        <help><![CDATA[ Name and revision of the information protocol this request came in with. Format: protocol/revision. ]]></help>               
                    </scopevar>
                    <scopevar name="SERVER_SOFTWARE" >
                        <help><![CDATA[ Name and version of the information server software answering the request (and running the gateway). Format: name/version. ]]></help>               
                    </scopevar>
                    <scopevar name="WEB_SERVER_API" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
            </scopevar>
            
            <scopevar name="Server" >
            <help><![CDATA[Client scope variables ]]></help>
               <scopevar name="ColdFusion" >
                <help><![CDATA[ ]]></help>  
                    <scopevar name="ProductName" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ProductVersion" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ProductLevel" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="SerialNumber" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="SupportedLocales" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>             
                    <scopevar name="AppServer" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Expiration" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="RootDir" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
            </scopevar>
                <scopevar name="OS" >
                        <help><![CDATA[ ]]></help> 
                              <scopevar name="Name" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="AdditionalInformation" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Version" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="BuildNumber" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>              
                    </scopevar>
            </scopevar>
            
            <scopevar name="Application" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="ApplicationName" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    </scopevar>
                    
            <scopevar name="Session" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="CFID" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="CFToken" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="URLToken" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    </scopevar>  
                    
                    <scopevar name="CFFtp" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="Succeeded" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="ErrorCode" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ErrorText" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ReturnValue" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>             
                    
                    </scopevar>
                    
                    <scopevar name="CFHttp" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="FileContent" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="MimeType" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Header" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ResponseHeader" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>             
                    <scopevar name="StatusCode" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    
                    </scopevar>
                    
                    <scopevar name="CFLDAP" type="query" attribute="action" attributevalue="query" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="CurrentRow" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="RecordCount" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ColumnList" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    </scopevar>
                    
                    <scopevar name="CFPOP" type="query" returnattribute="name" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="Date" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="From" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Body" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Header" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="MessageNumber" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ReplyTo" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Subject" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="CC" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="To" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="CurrentRow" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="RecordCount" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ColumnList" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Attachments" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="AttachmentFiles" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    </scopevar>
                    
                    <scopevar name="CFQuery" >
                        <returnvar attribute="name">                            
                                  <scopevar name="CurrentRow" >
                                <help><![CDATA[ Current row of query that cfoutput is processing. ]]></help>               
                                </scopevar>               
                                <scopevar name="RecordCount" >
                                    <help><![CDATA[ Number of records (rows) returned from the query. ]]></help>               
                                </scopevar>
                                <scopevar name="ColumnList" >
                                    <help><![CDATA[ Comma-separated list of the query columns. ]]></help>               
                                </scopevar>                        
                        </returnvar>
                        <scopevar name="ExecutionTime " >
                                <help><![CDATA[ ]]></help>               
                            </scopevar>
                    </scopevar>
                    
                    <scopevar name="CFStoredProc" >   
                                                                     
                                  <scopevar name="ExecutionTime" >
                                <help><![CDATA[  ]]></help>               
                                </scopevar>               
                                <scopevar name="StatusCode" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                
                                
                    </scopevar>
                    
                    <scopevar name="CFRegistry" > 
                    <returnvar attribute="name">                                                   
                                  <scopevar name="Entry" >
                                <help><![CDATA[  ]]></help>               
                                </scopevar>               
                                <scopevar name="Type" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="Value" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                </returnvar>
                    </scopevar>
                    
                    <scopevar name="CFSEARCH" > 
                    <returnvar attribute="name">                                                   
                                  <scopevar name="URL" >
                                <help><![CDATA[  ]]></help>               
                                </scopevar>               
                                <scopevar name="Key" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="Title" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="Score" >
                                <help><![CDATA[  ]]></help>               
                                </scopevar>               
                                <scopevar name="Custom1" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="Custom2" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="Summary" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="RecordCount" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="CurrentRow" >
                                <help><![CDATA[  ]]></help>               
                                </scopevar>               
                                <scopevar name="RecordsSearched" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                <scopevar name="ColumnList" >
                                    <help><![CDATA[  ]]></help>               
                                </scopevar>
                                </returnvar>
                    </scopevar>
                    
                    <scopevar name="CFDirectory" >
                        <help><![CDATA[ ]]></help>
                        <returnvar attribute="name" >
                          <scopevar name="Name" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="Size" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Type" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="DateLastModified" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="Attributes" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Mode" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    </returnvar>
                    </scopevar>
                    
                    <scopevar name="CFError" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="Diagnostics" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="MailTo" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="DateTime" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Browser" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="GeneratedContent" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="RemoteAddress" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="HTTPReferer" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Template" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="QueryString" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ValidationHeader" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="InvalidFields" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ValidationFooter" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="Type" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Message" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="Detail" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ErrNumber" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="NativeErrorCode" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="SQLState" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="LockName" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="LockOperation" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="MissingFileName" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="TagContext" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ErrorCode" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ExtendedInfo" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    </scopevar>
                    
                    <scopevar name="CFFile" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="AttemptedServerFile" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="ClientDirectory" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ClientFile" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ClientFileExt" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="ClientFileName" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ContentSubType" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ContentType" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="DateLastAccessed" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="FileExisted" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="FileSize" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="FileWasAppended" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="FileWasOverwritten" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="FileWasRenamed" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="FileWasSaved" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="OldFileSize" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="ServerDirectory" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ServerFile" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ServerFileExt" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ServerFileName" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>
                    <scopevar name="TimeCreated" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="TimeLastModified" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>                    
                    </scopevar>
                    
                    <scopevar name="CFCatch" >
                        <help><![CDATA[ ]]></help>
                          <scopevar name="Type" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="Message" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Detail" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ErrNumber" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="NativeErrorCode" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="SQLState" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="LockName" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="LockOperation" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="MissingFileName" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="TagContext" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="ErrorCode" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="ExtendedInfo" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="QueryError" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="SQL" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Where" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="Datasource" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="Name" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="TokenText" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    </scopevar>    
                    <scopevar name="this" >
                        <help><![CDATA[ ]]></help>
                        
                          <scopevar name="name" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    <scopevar name="applicationTimeout" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="clientManagement" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="clientStorage" >
                        <help><![CDATA[ ]]></help>               
                    </scopevar>               
                    
                    
                    <scopevar name="loginStorage" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                   
                    <scopevar name="sessionManagement" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="sessionTimeout" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="setClientCookies" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="setDomainCookies" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    <scopevar name="scriptProtect" >
                        <help><![CDATA[  ]]></help>               
                    </scopevar>
                    
                    </scopevar>
        </cfscopes>
   
	<scopes>
<scopes >
	<!-- Updated by Jordan Clark: [email protected] -->

	
	<!-- Server scope variables -->
	<scope value="Server.ColdFusion.ProductName" type="String"><help><![CDATA[ 
		ColdFusion product name, usually "ColdFusion Server"
	]]></help></scope>
	<scope value="Server.ColdFusion.ProductVersion" type="String"><help><![CDATA[ 
		ColdFusion product release information. Comma seperated list
		of build numbers, first number is the major build number.
		Example: 7,0,1,116466
	]]></help></scope>
	<scope value="Server.ColdFusion.ProductLevel" type="String"><help><![CDATA[ 
		ColdFusion product level information, for example:
		"Professional", "Enterprise", or "Developer"
	]]></help></scope>
	<scope value="Server.ColdFusion.SerialNumber" type="String"><help><![CDATA[ 
		ColdFusion serial number.
	]]></help></scope>
	<scope value="Server.ColdFusion.SupportedLocales" type="String"><help><![CDATA[ 
		Locales supported by ColdFusion, comma seperated.
	]]></help></scope>
	<scope value="Server.ColdFusion.Expiration" type="DateTime"><help><![CDATA[ 
		Expiration date of ColdFusion.
	]]></help></scope>
	<scope value="Server.ColdFusion.RootDir" type="String"><help><![CDATA[ 
		Directory ColdFusion is installed to
		Example: C:\CFusionMX7
	]]></help></scope>
	<scope value="Server.ColdFusion.AppServer" type="String"><help><![CDATA[ 
		Name of J2EE Application server, for stand-alone ColdFusion
		the value is "JRun4".
	]]></help></scope>
	<scope value="Server.ColdFusion.InstallKit" type="String"><help><![CDATA[ 
		Type of installation method.
		Example: Native Windows
	]]></help></scope>
	<scope value="Server.OS.Name" type="String"><help><![CDATA[ 
		Server operating system name.
	]]></help></scope>
	<scope value="Server.OS.AdditionalInformation" type="String"><help><![CDATA[ 
		Information about the host operating system.
	]]></help></scope>
	<scope value="Server.OS.Version" type="Numeric"><help><![CDATA[ 
		Operating system version.
	]]></help></scope>
	<scope value="Server.OS.Arch" type="String"><help><![CDATA[ 
		The computer architecture, Windows computers are: x86
	]]></help></scope>
	<scope value="Server.OS.BuildNumber" type="String"><help><![CDATA[ 
		Build number of the host operating system.
	]]></help></scope>
	
	
	<!-- Application Scope variables -->
	<scope value="Application.ApplicationName" type="String"><help><![CDATA[ 
		Name of the application set with the cfapplication tag, or
		in Application.cfc
	]]></help></scope>
	
	
	<!-- Application.CFC THIS variables -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<scope value="ApplicationCFC.Name" type="String"><help><![CDATA[ 
		The application name. If you do not set this variable, or
		set it to the empty string, your CFC applies to the unnamed
		application scope, which is the ColdFusion MX J2EE servlet
		context.
	]]></help></scope>
	<scope value="ApplicationCFC.ApplicationTimeout" type="DateTime"><help><![CDATA[ 
		Life span, as a real number of days, of the application,
		including all Application scope variables. Use the CFML
		CreateTimeSpan function to generate this variable's value.
	]]></help></scope>
	<scope value="ApplicationCFC.ClientManagement" type="boolean"><help><![CDATA[ 
		Whether the application supports Client scope variables.
	]]></help></scope>
	<scope value="ApplicationCFC.ClientStorage" type="String"><help><![CDATA[ 
		Where Client variables are stored; can be cookie, registry,
		or the name of a data source.
	]]></help></scope>
	<scope value="ApplicationCFC.LoginStorage" type="String"><help><![CDATA[ 
		Whether to store login information in the Cookie scope or the
		Session scope.
	]]></help></scope>
	<scope value="ApplicationCFC.SessionManagement" type="boolean"><help><![CDATA[ 
		Whether the application supports Session scope variables.
	]]></help></scope>
	<scope value="ApplicationCFC.SessionTimeout" type="DateTime"><help><![CDATA[ 
		Life span, as a real number of days, of the user session,
		including all Session variables. Use the CFML CreateTimeSpan
		function to generate this variable's value.
	]]></help></scope>
	<scope value="ApplicationCFC.SetClientCookies" type="boolean"><help><![CDATA[ 
		Whether to send CFID and CFTOKEN cookies to the client
		browser.
	]]></help></scope>
	<scope value="ApplicationCFC.SetDomainCookies" type="boolean"><help><![CDATA[ 
		Whether to set CFID and CFTOKEN cookies for a domain (not
		just a host).
	]]></help></scope>
	<scope value="ApplicationCFC.ScriptProtect" type="boolean"><help><![CDATA[ 
		Whether to protect variables from cross-site scripting
		attacks.
	]]></help></scope>
	
	
	<!-- Client scope variables -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<!-- REFERENCE: expressionelements.vtm -->
	<scope value="Client.CFID" type="Numeric"><help><![CDATA[ 
		Unique client ID. Part of the session key.
	]]></help></scope>
	<scope value="Client.CFToken" type="Numeric"><help><![CDATA[ 
		Unique ID. Part of the session key.
	]]></help></scope>
	<scope value="Client.HitCount" type="Numeric"><help><![CDATA[ 
		Number of client visits.
	]]></help></scope>
	<scope value="Client.LastVisit" type="DateTime"><help><![CDATA[ 
		Date and time of the last visit.
	]]></help></scope>
	<scope value="Client.TimeCreated" type="DateTime"><help><![CDATA[ 
		Date and time of first visit.
	]]></help></scope>
	<scope value="Client.URLToken" type="String"><help><![CDATA[ 
		CFID combined with CFTOKEN.
		Example: CFID=123&CFTOKEN=45678
	]]></help></scope>
	
	
	<!-- Session Scope variables -->
	<scope value="Session.CFID" type="Numeric"><help><![CDATA[ 
		Unique Session ID. Part of the session key.
	]]></help></scope>
	<scope value="Session.CFToken" type="Numeric"><help><![CDATA[ 
		Unique Session ID. Part of the session key.
	]]></help></scope>
	<scope value="Session.URLToken" type="String"><help><![CDATA[ 
		CFID combined with CFTOKEN
		Eexample: CFID=123&CFTOKEN=45678
	]]></help></scope>
	<scope value="Session.SessionID" type="String"><help><![CDATA[ 
		A unique identifier for the session. ColdFusion session
		management: a combination of the application name and CFID
		and CFToken values. J2EE session management: the jsessionid
		value.
	]]></help></scope>
	
	
	<!-- Custom tag variables -->
	<scope value="ThisTag.ExecutionMode" type="String"><help><![CDATA[ 
		A custom tag template may be invoked in either of two modes:
		"Start" tag execution and "End" tag execution. "Inactive" is
		another possible value, but for unknown purposes.
	]]></help></scope>
	<scope value="ThisTag.HasEndTag" type="boolean"><help><![CDATA[ 
		Used for code validation, it distinguishes between custom
		tags that have and don't have end tags for
		ExecutionMode='start'. The name of the Boolean value is
		ThisTagHasEndTag.
	]]></help></scope>
	<scope value="ThisTag.GeneratedContent" type="String"><help><![CDATA[ 
		Custom tags can access and modify the generated content of
		any of its instances using the ThisTag.GeneratedContent
		variable.
	]]></help></scope>
	<scope value="ThisTag.AssocAttribs" type="Struct"><help><![CDATA[ 
		Holds the attributes of all nested tags if CFASSOCIATE has
		used them.
	]]></help></scope>
	
	
	<!-- cffile action="upload" variables -->
	<!-- CFFILE prefix can be renamed with RESULT attribute -->
	<scope value="CFFILE.AttemptedServerFile" type="boolean"><help><![CDATA[ 
		Specifies whether or not ColdFusion attempted to save a file.
	]]></help></scope>
	<scope value="CFFILE.ClientDirectory" type="String"><help><![CDATA[ 
		Full path of the uploaded file on the clients system.
	]]></help></scope>
	<scope value="CFFILE.ClientFile" type="String"><help><![CDATA[ 
		Filename of the uploaded file on the clients system.
	]]></help></scope>
	<scope value="CFFILE.ClientFileExt" type="String"><help><![CDATA[ 
		Extension of the uploaded file on the clients system without
		a period.
	]]></help></scope>
	<scope value="CFFILE.ClientFileName" type="String"><help><![CDATA[ 
		Filename without an extension of the uploaded file on the
		client's system.
	]]></help></scope>
	<scope value="CFFILE.ContentSubType" type="String"><help><![CDATA[ 
		MIME content subtype of the saved file.
	]]></help></scope>
	<scope value="CFFILE.ContentType" type="String"><help><![CDATA[ 
		MIME content type of the saved file.
	]]></help></scope>
	<scope value="CFFILE.DateLastAccessed" type="DateTime"><help><![CDATA[ 
		Date and time the uploaded file was last accessed.
	]]></help></scope>
	<scope value="CFFILE.FileExisted" type="boolean"><help><![CDATA[ 
		Specifies whether or not the file already existed with the
		same path.
	]]></help></scope>
	<scope value="CFFILE.FileSize" type="Numeric"><help><![CDATA[ 
		Size of the uploaded file.
	]]></help></scope>
	<scope value="CFFILE.FileWasAppended" type="boolean"><help><![CDATA[ 
		Specifies whether or not ColdFusion appended a file to an
		existing file.
	]]></help></scope>
	<scope value="CFFILE.FileWasOverwritten" type="boolean"><help><![CDATA[ 
		Specifies whether or not ColdFusion overwrote a file.
	]]></help></scope>
	<scope value="CFFILE.FileWasRenamed" type="boolean"><help><![CDATA[ 
		Specifies whether or not the uploaded file was renamed to
		avoid a name conflict.
	]]></help></scope>
	<scope value="CFFILE.FileWasSaved" type="boolean"><help><![CDATA[ 
		Specifies whether or not ColdFusion saved a file.
	]]></help></scope>
	<scope value="CFFILE.OldFileSize" type="Numeric"><help><![CDATA[ 
		Size of a file that was overwritten in the file upload
		operation.
	]]></help></scope>
	<scope value="CFFILE.ServerDirectory" type="String"><help><![CDATA[ 
		Full path of the file actually saved.
	]]></help></scope>
	<scope value="CFFILE.ServerFile" type="String"><help><![CDATA[ 
		Filename of the file actually saved.
	]]></help></scope>
	<scope value="CFFILE.ServerFileExt" type="String"><help><![CDATA[ 
		Extension of the uploaded file on the server, without a period
		Example: txt
	]]></help></scope>
	<scope value="CFFILE.ServerFileName" type="String"><help><![CDATA[ 
		Filename, without an extension, of the uploaded file on the
		server.
	]]></help></scope>
	<scope value="CFFILE.TimeCreated" type="DateTime"><help><![CDATA[ 
		Time the uploaded file was created.
	]]></help></scope>
	<scope value="CFFILE.TimeLastModified" type="DateTime"><help><![CDATA[ 
		Date and time of the last modification to the uploaded file.
	]]></help></scope>
	
	
	<!-- CFFTP variables -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00000261.htm -->
	<!-- REFERENCE: expressionelements.vtm -->
	<!-- CFFTP prefix can be renamed with RESULT attribute -->
	<scope value="CFFTP.ReturnValue" type="String"><help><![CDATA[ 
		The result value depending on the action performed, as
		follows:
		getCurrentDir = current directory (string)
		getCurrentURL = current URL (string)
		existsDir = yes/no
		existsFile = yes/no
		exists = yes/no
	]]></help></scope>
	<scope value="CFFTP.Succeeded" type="boolean"><help><![CDATA[ 
		Yes or No dependent on value of ErrorCode.
	]]></help></scope>
	<scope value="CFFTP.ErrorCode" type="Numeric"><help><![CDATA[ 
		Error code.
	]]></help></scope>
	<scope value="CFFTP.ErrorText" type="String"><help><![CDATA[ 
		Text associated with ErrorCode.
	]]></help></scope>
	
	
	<!-- Returned from "ListDir" action as a query with these fields -->
	<!-- CFFTP prefix is set by NAME attribute -->
	<scope value="CFFTPList.Name" type="String"><help><![CDATA[ 
		ListDir Query Field: Filename of the current element.
	]]></help></scope>
	<scope value="CFFTPList.Path" type="String"><help><![CDATA[ 
		ListDir Query Field: File path (without the drive
		designation) of the current element.
	]]></help></scope>
	<scope value="CFFTPList.URL" type="String"><help><![CDATA[ 
		ListDir Query Field: Complete URL for the current element
		(file or directory).
	]]></help></scope>
	<scope value="CFFTPList.Length" type="Numeric"><help><![CDATA[ 
		ListDir Query Field: Number indicating file size of the
		current element.
	]]></help></scope>
	<scope value="CFFTPList.LastModified" type="DateTime"><help><![CDATA[ 
		ListDir Query Field: Unformatted date/time value of the
		current element.
	]]></help></scope>
	<scope value="CFFTPList.Attributes" type="String"><help><![CDATA[ 
		ListDir Query Field: Indicates attributes of the current
		element.
	]]></help></scope>
	<scope value="CFFTPList.IsDirectory" type="boolean"><help><![CDATA[ 
		ListDir Query Field: Indicates whether object is a file or
		directory.
	]]></help></scope>
	<scope value="CFFTPList.CurrentRow" type="String"><help><![CDATA[ 
		The current row of the query in a loop.
	]]></help></scope>
	<scope value="CFFTPList.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="CFFTPList.ColumnList" type="Numeric"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	
	
	<!-- CFNTAUTHENTICATE -->
	<!-- CFNTAUTHENTICATE prefix is set by RESULT attribute -->
	<scope value="CFNTAUTHENTICATE.auth" type="boolean"><help><![CDATA[ 
		Whether the user is authenticated
	]]></help></scope>
	<scope value="CFNTAUTHENTICATE.groups" type="String"><help><![CDATA[ 
		A comma-delimited list of the user's groups in the specified
		domain. The structure includes this field only if the
		listGroups attribute is Yes.
	]]></help></scope>
	<scope value="CFNTAUTHENTICATE.name" type="String"><help><![CDATA[ 
		The user name; equals the tag's name attribute.
	]]></help></scope>
	<scope value="CFNTAUTHENTICATE.status" type="String"><help><![CDATA[ 
		The authentication status. One of the following: 
		- success
		- UserNotInDirFailure: the user is not listed in the directory.
		- AuthenticationFailure: the user is in the directory, but
		  the password is not valid.
	]]></help></scope>
	
	
	<!-- CFDIRECTORY ACTION="LIST" QUERY -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<!-- REFERENCE: expressionelements.vtm -->
	<!-- CFDIRECTORY prefix is set by QUERY attribute -->
	<scope value="CFDIRECTORY.Attributes" type="String"><help><![CDATA[ 
		Returns file attributes, if applicable.
	]]></help></scope>
	<scope value="CFDIRECTORY.DateLastModified" type="DateTime"><help><![CDATA[ 
		Returns the date an entry was last modified.
	]]></help></scope>
	<scope value="CFDIRECTORY.Directory" type="String"><help><![CDATA[ 
		Directory containing the entry.
	]]></help></scope>
	<scope value="CFDIRECTORY.Mode" type="String"><help><![CDATA[ 
		(Deprecated) Empty value for backward compatibility with
		ColdFusion 5 on UNIX.
	]]></help></scope>
	<scope value="CFDIRECTORY.Name" type="String"><help><![CDATA[ 
		Returns the directory or file entry name. ( "." and ".."
		aren't returned since 6.0)
	]]></help></scope>
	<scope value="CFDIRECTORY.Size" type="Numeric"><help><![CDATA[ 
		Returns the size of directory or file entry.
	]]></help></scope>
	<scope value="CFDIRECTORY.Type" type="String"><help><![CDATA[ 
		Returns entry type: "File" or "Dir".
	]]></help></scope>
	<scope value="CFDIRECTORY.CurrentRow" type="String"><help><![CDATA[ 
		The current row of the query in a loop.
	]]></help></scope>
	<scope value="CFDIRECTORY.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="CFDIRECTORY.ColumnList" type="Numeric"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	
	
	<!-- CFREGISTRY ACTION="GETALL" QUERY -->
	<!-- REFERENCE: expressionelements.vtm -->
	<!-- CFREGISTRY prefix is set by NAME attribute -->
	<scope value="CFREGISTRY.Entry" type="String"><help><![CDATA[ 
		Registry value name.
	]]></help></scope>
	<scope value="CFREGISTRY.Type" type="String"><help><![CDATA[ 
		Data type.
	]]></help></scope>
	<scope value="CFREGISTRY.Value" type="String"><help><![CDATA[ 
		Registry value data.
	]]></help></scope>
	<scope value="CFREGISTRY.CurrentRow" type="String"><help><![CDATA[ 
		The current row of the query in a loop.
	]]></help></scope>
	<scope value="CFREGISTRY.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="CFREGISTRY.ColumnList" type="Numeric"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	
	
	<!-- CFSEARCH QUERY -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<!-- CFSEARCH prefix is set by NAME attribute -->
	<scope value="CFSEARCH.URL" type="String"><help><![CDATA[ 
		Value of URLpath attribute in the cfindex tag used to
		populate a collection.
	]]></help></scope>
	<scope value="CFSEARCH.Key" type="String"><help><![CDATA[ 
		Value of the key attribute in the cfindex tag used to
		populate a collection.
	]]></help></scope>
	<scope value="CFSEARCH.Title" type="String"><help><![CDATA[ 
		Value of title attribute in cfindex tag used to populate the
		collection, including PDF and Office document titles. If a
		title is not extracted from the document, the tag uses the
		cfindex title attribute value for each row.
	]]></help></scope>
	<scope value="CFSEARCH.Score" type="Numeric"><help><![CDATA[ 
		Relevancy score of document based on search criteria, from
		0-1. Example: 0.92 (would be 92%)
	]]></help></scope>
	<scope value="CFSEARCH.Custom1" type="String"><help><![CDATA[ 
		Value of custom fields in cfindex tag used to populate a
		collection.
	]]></help></scope>
	<scope value="CFSEARCH.Custom2" type="String"><help><![CDATA[ 
		Value of custom fields in cfindex tag used to populate a
		collection.
	]]></help></scope>
	<scope value="CFSEARCH.Context" type="String"><help><![CDATA[ 
		A context summary containing the search terms, highlighted in
		bold (by default). This is enabled if you set the
		contextpassages attribute to a number greater than zero.
	]]></help></scope>
	<scope value="CFSEARCH.Custom3" type="String"><help><![CDATA[ 
		Value of custom fields in cfindex tag used to populate a
		collection.
	]]></help></scope>
	<scope value="CFSEARCH.Custom4" type="String"><help><![CDATA[ 
		Value of custom fields in cfindex tag used to populate a
		collection.
	]]></help></scope>
	<scope value="CFSEARCH.Size" type="Numeric"><help><![CDATA[ 
		The number of bytes in the index document.
	]]></help></scope>
	<scope value="CFSEARCH.Rank" type="String"><help><![CDATA[ 
		The rank of this document in the search results.
	]]></help></scope>
	<scope value="CFSEARCH.Author" type="String"><help><![CDATA[ 
		Extracted from the HTML, Office, and PDF documents when
		available.
	]]></help></scope>
	<scope value="CFSEARCH.Type" type="String"><help><![CDATA[ 
		The MIME type of the document.
		Example: text/html
	]]></help></scope>
	<scope value="CFSEARCH.Category" type="String"><help><![CDATA[ 
		A list of the categories that were specified for this
		document when it was indexed.
	]]></help></scope>
	<scope value="CFSEARCH.CategoryTree" type="String"><help><![CDATA[ 
		A hierarchical category tree, or serial list of categories,
		that was specified for this document when it was indexed.
		Only a single tree is returned.
	]]></help></scope>
	<scope value="CFSEARCH.RecordsSearched" type="Numeric"><help><![CDATA[ 
		Number of records searched. This is the same value for each
		row in the record set. Corresponds to the searched key in the
		status structure.
	]]></help></scope>
	<scope value="CFSEARCH.Summary" type="String"><help><![CDATA[ 
		Contents of automatic summary generated by cfindex.
	]]></help></scope>
	<scope value="CFSEARCH.CurrentRow" type="String"><help><![CDATA[ 
		The current row of the query in a loop.
	]]></help></scope>
	<scope value="CFSEARCH.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="CFSEARCH.ColumnList" type="Numeric"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	
	
	<!-- CFCOLLECTION -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00000230.htm#1097667 -->
	<!-- CFCOLLECTION prefix is set by NAME attribute -->
	<scope value="CFCOLLECTION.categories" type="boolean"><help><![CDATA[ 
		Collection has category support enabled or disabled.
	]]></help></scope>
	<scope value="CFCOLLECTION.charset" type="String"><help><![CDATA[ 
		The character set of the collection.
	]]></help></scope>
	<scope value="CFCOLLECTION.created" type="DateTime"><help><![CDATA[ 
		The date and time that the collection was created.
	]]></help></scope>
	<scope value="CFCOLLECTION.doccount" type="Numeric"><help><![CDATA[ 
		The number of documents in this collection.
	]]></help></scope>
	<scope value="CFCOLLECTION.external" type="String"><help><![CDATA[ 
		- yes: the collection is external.
		- no: the collection is not external.
		- Not Found: the collection is registered but is not available in the defined path .
	]]></help></scope>
	<scope value="CFCOLLECTION.language" type="String"><help><![CDATA[ 
		The locale setting of the collection.
		(This information is not available for K2Server collections.)
	]]></help></scope>
	<scope value="CFCOLLECTION.lastmodified" type="DateTime"><help><![CDATA[ 
		The date and time that the collection was last changed.
	]]></help></scope>
	<scope value="CFCOLLECTION.name" type="String"><help><![CDATA[ 
		The name of the collection.
	]]></help></scope>
	<scope value="CFCOLLECTION.path" type="String"><help><![CDATA[ 
		Absolute path to the collection.
	]]></help></scope>
	<scope value="CFCOLLECTION.size" type="Numeric"><help><![CDATA[ 
		The size of the collection, expressed in kilobytes.
	]]></help></scope>
	<scope value="CFCOLLECTION.mapped" type="boolean" compatibility="obsolete"><help><![CDATA[ 
		Obsolete.
		The collection is mapped.
		(This information is not available for K2Server collections.)
	]]></help></scope>
	<scope value="CFCOLLECTION.online" type="boolean" compatibility="obsolete"><help><![CDATA[ 
		Obsolete.
		The collection can be searched.
		(If EXTERNAL = "Not Found", this value is "No".)
	]]></help></scope>
	<scope value="CFCOLLECTION.registered" type="String" compatibility="obsolete"><help><![CDATA[ 
		Obsolete.
		- CF: collection is registered by ColdFusion
		- K2: collection is registered by K2Server
	]]></help></scope>
	
	
	<!-- CFSTOREDPROC -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<!-- CFSTOREDPROC prefix can be renamed with RESULT attribute -->
	<scope value="CFSTOREDPROC.StatusCode" type="String"><help><![CDATA[ 
		Status code for the stored procedure.
		(only when returnCode="true")
	]]></help></scope>
	<scope value="CFSTOREDPROC.ExecutionTime" type="Numeric"><help><![CDATA[ 
		Execution time for the request in milliseconds.
		(only when returnCode="true")
	]]></help></scope>
	
	
	<!-- CFPOP action="GETALL" and action="GETHEADERONLY" QUERY -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<!-- CFPOP prefix is set by NAME attribute -->
	<scope value="CFPOP.Attachments" type="String"><help><![CDATA[ 
		Contains a tab-separated list of all original attachment
		names.
		(only when action="getall")
	]]></help></scope>
	<scope value="CFPOP.AttachmentFiles" type="String"><help><![CDATA[ 
		Contains a tab-separated list of the actual temporary
		filenames written to the server.
		(only when action="getall")
	]]></help></scope>
	<scope value="CFPOP.Body" type="String"><help><![CDATA[ 
		Body of message.
		(only when action="getall")
	]]></help></scope>
	<scope value="CFPOP.TextBody" type="String"><help><![CDATA[ 
		Text Body of message.
		(only when action="getall")
	]]></help></scope>
	<scope value="CFPOP.HtmlBody" type="String"><help><![CDATA[ 
		HTML Body of message.
		(only when action="getall")
	]]></help></scope>
	<scope value="CFPOP.CC" type="String"><help><![CDATA[ 
		CC value from message header.
	]]></help></scope>
	<scope value="CFPOP.Date" type="DateTime"><help><![CDATA[ 
		Date sent value from message header.
	]]></help></scope>
	<scope value="CFPOP.From" type="String"><help><![CDATA[ 
		From value from message header.
	]]></help></scope>
	<scope value="CFPOP.Header" type="String"><help><![CDATA[ 
		Entire message header.
		(only when action="getall")
	]]></help></scope>
	<scope value="CFPOP.MessageNumber" type="String"><help><![CDATA[ 
		Sequential message number of message on POP server.
	]]></help></scope>
	<scope value="CFPOP.MessageID" type="String"><help><![CDATA[ 
		The mail header Message-ID field.
	]]></help></scope>
	<scope value="CFPOP.ReplyTo" type="String"><help><![CDATA[ 
		ReplyTo value from message header.
	]]></help></scope>
	<scope value="CFPOP.Subject" type="String"><help><![CDATA[ 
		Subject value from message header.
	]]></help></scope>
	<scope value="CFPOP.To" type="String"><help><![CDATA[ 
		To value from message header.
	]]></help></scope>
	<scope value="CFPOP.ColumnList" type="String"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	<scope value="CFPOP.CurrentRow" type="Numeric"><help><![CDATA[ 
		The current row of the query in a loop.
	]]></help></scope>
	<scope value="CFPOP.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="CFPOP.UID" type="Numeric"><help><![CDATA[ 
		Unique identifier for the e-mail message file.
		(mail header X-UID field)
	]]></help></scope>
	<scope value="CFPOP.CIDS" type="Struct"><help><![CDATA[ 
		Structure that contains key-value pairs. The keys are the
		names of image files that are embedded in the e-mail
		message; the values are their cids. You can use the cid
		to find the correct place of an image in an HTML e-mail
		message that the cfpop tag retrieves. If the e-mail message
		contains more than one embedded image, only the last
		embedded image is available.
	]]></help></scope>
	
	
	<!-- CFQUERY Query -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=00001134.htm#1133743 -->
	<!-- CFQUERY prefix is set by RESULT attribute -->
	<scope value="CFQUERY.SQL" type="String"><help><![CDATA[ 
		The SQL statement that was executed.
	]]></help></scope>
	<scope value="CFQUERY.Cached" type="boolean"><help><![CDATA[ 
		If the query was cached.
	]]></help></scope>
	<scope value="CFQUERY.SqlParameters" type="Array"><help><![CDATA[ 
		An ordered Array of cfqueryparam values.
	]]></help></scope>
	<scope value="CFQUERY.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="CFQUERY.ColumnList" type="Numeric"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	<scope value="CFQUERY.ExecutionTime" type="Numeric"><help><![CDATA[ 
		Execution time for the SQL request.
	]]></help></scope>
	
	
	<!-- Any Query -->
	<scope value="QUERY.CurrentRow" type="String"><help><![CDATA[ 
		The current row of the query in a loop.
	]]></help></scope>
	<scope value="QUERY.RecordCount" type="Numeric"><help><![CDATA[ 
		Total number of records in the query.
	]]></help></scope>
	<scope value="QUERY.ColumnList" type="Numeric"><help><![CDATA[ 
		Column list, comma seperated.
	]]></help></scope>
	
	
	<!-- cfhttp variables -->
	<!-- CFHTTP prefix can be renamed with RESULT attribute -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00000272.htm -->
	<scope value="CFHTTP.CharSet" type="String"><help><![CDATA[ 
		Response character character set (character encoding)
		specified by the response Content-Type header.
	]]></help></scope>
	<scope value="CFHTTP.ErrorDetail" type="String"><help><![CDATA[ 
		If the connection to the HTTP server fails, contains details
		about the failure. For instance: "Unknown host: my.co.com";
		otherwise, the empty string. Macromedia recommends that you
		check this variable for an error condition before checking
		other variables.
	]]></help></scope>
	<scope value="CFHTTP.FileContent" type="String"><help><![CDATA[ 
		Response body; for example: the contents of a html page
		retrieved by a GET operation. Empty if you save the response
		in a file.
	]]></help></scope>
	<scope value="CFHTTP.Header" type="String"><help><![CDATA[ 
		Raw response header containing all header information in a
		single string. Contains the same information as the
		#cfhttp.responseHeader# variable.
	]]></help></scope>
	<scope value="CFHTTP.MimeType" type="String"><help><![CDATA[ 
		MIME type specified by the response Content-Type header,
		Example: text/html
	]]></help></scope>
	<scope value="CFHTTP.ResponseHeader" type="String"><help><![CDATA[ 
		The response headers formatted into a structure. Each element
		key is the header name, such as Content-Type or Status_Code.
		If there is more than one instance of a header type, the type
		values are put in an array. One common technique is to
		dynamically access the cfhttp.responseHeader structure as a
		dynamic array, example: #cfhttp.resonseHeader[fieldVariable]#
	]]></help></scope>
	<scope value="CFHTTP.StatusCode" type="String"><help><![CDATA[ 
		The HTTP status_code header value followed by the HTTP
		Explanation header value.
		Example: 200 OK
	]]></help></scope>
	<scope value="CFHTTP.Text" type="boolean"><help><![CDATA[ 
		Boolean; True if the response body content type is text.
		ColdFusion recognizes the response body as text if: The
		header does not specify a content type, or it starts with
		"text" or "message" or the full content
		type="application/octet-stream".
	]]></help></scope>
	
	
	<!-- CGI scope variables -->
	<!-- REFERENCE: Apache: http://www.zytrax.com/tech/web/env_var.htm -->
	<!-- REFERENCE: IIS: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iissdk/html/21b3be8f-d4ed-4059-8e21-6cba2c253006.asp -->
	<!-- REFERENCE: Zeus: http://www.zeus.com/extra/docsystem/docroot/apps/web/docs/modules/cgi/reference.html -->
	<scope value="CGI.ALL_HTTP" type="String"><help><![CDATA[ 
		All HTTP headers that were not already parsed into one of the
		listed variables. These variables are of the form HTTP_header
		field name with each variable separated by a semi-colon
	]]></help></scope>
	<scope value="CGI.ALL_RAW" type="String"><help><![CDATA[ 
		(IIS) Retrieves all headers in raw form. The difference
		between CGI.ALL_RAW and CGI.ALL_HTTP is that CGI.ALL_HTTP
		places an HTTP_ prefix before the header name and the header
		name is always capitalized. In ALL_RAW the header name and
		values appear as they are sent by the client.
	]]></help></scope>
	<scope value="CGI.APP_POOL_ID" type="String"><help><![CDATA[ 
		(IIS) Returns the name of the application pool that is
		running in the IIS worker process that is handling the
		request. There is also an CGI.APP_POOL_ID environment
		variable that is available to applications that are running
		in the IIS worker process. (Note: IIS 5.1 and earlier: This server
		variable is not available.)
	]]></help></scope>
	<scope value="CGI.APPL_MD_PATH" type="String"><help><![CDATA[ 
		(IIS) Retrieves the metabase path of the application.
	]]></help></scope>
	<scope value="CGI.APPL_PHYSICAL_PATH" type="String"><help><![CDATA[ 
		(IIS) Retrieves the physical path corresponding to the
		metabase path in CGI.APPL_MD_PATH.
	]]></help></scope>
	<scope value="CGI.AUTH_PASSWORD" type="String"><help><![CDATA[ 
		(IIS) The value entered in the client's authentication
		dialog. This variable is available only if Basic
		authentication is used.
	]]></help></scope>
	<scope value="CGI.AUTH_TYPE" type="String"><help><![CDATA[ 
		If the server supports user authentication, and the script
		is protected, this is the protocol-specific authentication
		method used to validate the user.
	]]></help></scope>
	<scope value="CGI.AUTH_USER" type="String"><help><![CDATA[ 
		(IIS) The name of the user as it is derived from the
		authorization header sent by the client, before the user
		name is mapped to a Windows account. This variable is no
		different from CGI.REMOTE_USER. If you have an authentication
		filter installed on your Web server that maps incoming users
		to accounts, use CGI.LOGON_USER to view the mapped user name.
	]]></help></scope>
	<scope value="CGI.CACHE_URL" type="String"><help><![CDATA[ 
		(IIS) Returns the full URL
		Example: http://www.macromedia.com:80/index.cfm?query=string
		(Note: IIS 5.1 and earlier: This server variable is not
		available.)
	]]></help></scope>
	<scope value="CGI.CERT_COOKIE" type="String"><help><![CDATA[ 
		(IIS) Unique ID for the client certificate, returned as a
		string. This can be used as a signature for the whole client
		certificate.
	]]></help></scope>
	<scope value="CGI.CERT_FLAGS" type="String"><help><![CDATA[ 
		(IIS) bit0 is set to 1 if the client certificate is present.
		bit1 is set to 1 if the certification authority of the client
		certificate is invalid (that is, it is not in the list of
		recognized certification authorities on the server). If bit
		1 of CGI.CERT_FLAGS is set to 1, indicating that the
		certificate is invalid, IIS version 4.0 and later will reject
		the certificate.
		(Note: Earlier versions of IIS will not reject the
		certificate.)
	]]></help></scope>
	<scope value="CGI.CERT_ISSUER" type="String"><help><![CDATA[ 
		Issuer field of the client certificate
		(O=MS, OU=IAS, CN=user name, C=USA).
	]]></help></scope>
	<scope value="CGI.CERT_KEYSIZE" type="String"><help><![CDATA[ 
		(IIS) Number of bits in the Secure Sockets Layer (SSL)
		connection key size.
		Example: 128
	]]></help></scope>
	<scope value="CGI.CERT_SECRETKEYSIZE" type="String"><help><![CDATA[ 
		(IIS) Number of bits in server certificate private key.
		Example: 1024
	]]></help></scope>
	<scope value="CGI.CERT_SERIALNUMBER" type="String"><help><![CDATA[ 
		(IIS) Serial number field of the client certificate.
	]]></help></scope>
	<scope value="CGI.CERT_SERVER_ISSUER" type="String"><help><![CDATA[ 
		(IIS) Issuer field of the server certificate.
	]]></help></scope>
	<scope value="CGI.CERT_SERVER_SUBJECT" type="String"><help><![CDATA[ 
		(IIS) Subject field of the server certificate.
	]]></help></scope>
	<scope value="CGI.CERT_SUBJECT" type="String"><help><![CDATA[ 
		Subject field of the client certificate.
	]]></help></scope>
	<scope value="CGI.CF_TEMPLATE_PATH" type="String"><help><![CDATA[ 
		Show the entire file path to the coldfusion template, similar
		to CGI.PATH_TRANSLATED.
		Example: c:\inetpub\wwwroot\somesite\somepage.cfm
	]]></help></scope>
	<scope value="CGI.CLIENT_CERT_ENCODED" type="String"><help/></scope>
	<scope value="CGI.CONTENT_LENGTH" type="String"><help><![CDATA[ 
		The length of the content as given by the client.
	]]></help></scope>
	<scope value="CGI.CONTENT_TYPE" type="String"><help><![CDATA[ 
		For queries that have attached information, such as HTTP POST
		and PUT, this is the content type of the data.
	]]></help></scope>
	<scope value="CGI.DATE_GMT" type="String"><help><![CDATA[ 
		(Apache SSI) The current date and time in Greenwich Mean Time
		(now Unviversal Co-ordinated Time (UCT) in the default or
		#config defined format). Thursday, 03-May-2001 21:18:54 GMT
	]]></help></scope>
	<scope value="CGI.DATE_LOCAL" type="String"><help><![CDATA[ 
		(Apache SSI) The current date and time in the local (server)
		timezone (in the default or #config defined format),
		Example: Thursday, 03-May-2001 17:18:54 EDT
	]]></help></scope>
	<scope value="CGI.DOCUMENT_ARGS" type="String"><help><![CDATA[ 
		(Zeus SSI) This will be set to the CGI.QUERY_STRING of the
		master document. The value of CGI.QUERY_STRING for an SSI
		sub-request will contain the query string in the sub-request
		URL, if present, else the master document's CGI.QUERY_STRING.
	]]></help></scope>
	<scope value="CGI.DOCUMENT_NAME" type="String"><help><![CDATA[ 
		(Apache SSI) The file name (excludes directories) of the
		document requested by the user.
		Example: ssi.htm
	]]></help></scope>
	<scope value="CGI.DOCUMENT_PATH_INFO" type="String"><help><![CDATA[ 
		(Apache SSI/Zeus SSI) This will be set to the CGI.PATH_INFO of
		the master document.
	]]></help></scope>
	<scope value="CGI.DOCUMENT_ROOT" type="String"><help><![CDATA[ 
		(Apache SSI) The root directory of this site defined by the
		'DocumentRoot' directive in the General Section or a
		<virtualhost> section.
		Example: /var/www/zytrax 
	]]></help></scope>
	<scope value="CGI.DOCUMENT_URI" type="String"><help><![CDATA[ 
		(Apache SSI/Zeus SSI) The URL path of the document requested
		by the user.
		Example: /tech/web/ssi.htm
	]]></help></scope>
	<scope value="CGI.GATEWAY_INTERFACE" type="String"><help><![CDATA[ 
		The revision of the CGI specification to which this server
		complies. Format: CGI/revision.
	]]></help></scope>
	<scope value="CGI.HTTP_ACCEPT" type="String"><help><![CDATA[ 
		List of Content-types the browser can accept (defined by the
		HTTP Accept header).
	]]></help></scope>
	<scope value="CGI.HTTP_ACCEPT_ENCODING" type="String"><help><![CDATA[ 
		(IIS) Returns a list of accepted encoding types.
		Example: gzip, deflate
	]]></help></scope>
	<scope value="CGI.HTTP_ACCEPT_LANGUAGE" type="String"><help><![CDATA[ 
		(IIS) Returns a string describing the language to use for
		displaying content.
	]]></help></scope>
	<scope value="CGI.HTTP_CONNECTION" type="String"><help><![CDATA[ 
		(IIS) Returns a string describing the connection type.
		Example: Keep-Alive
	]]></help></scope>
	<scope value="CGI.HTTP_COOKIE" type="String"><help><![CDATA[ 
		(IIS) Returns the cookie string that was included with the
		request.
	]]></help></scope>
	<scope value="CGI.HTTP_HOST" type="String"><help><![CDATA[ 
		(IIS) Returns the name of the Web server. This may or may
		not be the same as CGI.SERVER_NAME depending on type of name
		resolution you are using on your Web server (IP address,
		host header).
	]]></help></scope>
	<scope value="CGI.HTTP_IF_MODIFIED_SINCE" type="String"><help/></scope>
	<scope value="CGI.HTTP_METHOD" type="String"><help><![CDATA[ 
		(IIS) The method used to make the request
		(Note: same as CGI.REQUEST_METHOD).
	]]></help></scope>
	<scope value="CGI.HTTP_REFERER" type="String"><help><![CDATA[ 
		The referring document. The document that linked to or
		submitted form data.
	]]></help></scope>
	<scope value="CGI.HTTP_URL" type="String"><help><![CDATA[ 
		(IIS) Returns the raw, encoded URL.
		Example: /vdir/default.asp?querystring
	]]></help></scope>
	<scope value="CGI.HTTP_USER_AGENT" type="String"><help><![CDATA[ 
		The browser the client is currently using to send the
		request. Format: software/version library/version.
	]]></help></scope>
	<scope value="CGI.HTTP_VERSION" type="String"><help><![CDATA[ 
		(IIS) The name and version of the request protocol (the raw
		form of CGI.SERVER_PROTOCOL).
	]]></help></scope>
	<scope value="CGI.HTTPS" type="String"><help><![CDATA[ 
		(IIS/Zeus) Returns ON if the request came in through a secure
		channel; or it returns OFF, if the request is for an
		insecure channel.
		Example: SSL
	]]></help></scope>
	<scope value="CGI.HTTPS_KEYSIZE" type="String"><help><![CDATA[ 
		(IIS/Zeus) Number of bits in the SSL connection key size.
		Example: 128
	]]></help></scope>
	<scope value="CGI.HTTPS_SECRETKEYSIZE" type="String"><help><![CDATA[ 
		(IIS/Zeus) Number of bits in the server certificate private
		key.
		Example: 1024
	]]></help></scope>
	<scope value="CGI.HTTPS_SERVER_ISSUER" type="String"><help><![CDATA[ 
		(IIS) Issuer field of the server certificate.
	]]></help></scope>
	<scope value="CGI.HTTPS_SERVER_SUBJECT" type="String"><help><![CDATA[ 
		(IIS) Subject field of the server certificate.
	]]></help></scope>
	<scope value="CGI.HTTPS_SESSIONID" type="String"><help><![CDATA[ 
		(Zeus SSI) The value of the session id used by the SSL
		session. This value is unique for each distinct SSL session
	]]></help></scope>
	<scope value="CGI.INSTANCE_ID" type="String"><help><![CDATA[ 
		(IIS) The ID for the IIS instance in textual format. If the
		instance ID is 1, it appears as a string. You can use this
		variable to retrieve the ID of the Web server instance (in
		the metabase) to which the request belongs.
	]]></help></scope>
	<scope value="CGI.INSTANCE_META_PATH" type="String"><help><![CDATA[ 
		(IIS) The metabase path for the instance of IIS that responds
		to the request.
	]]></help></scope>
	<scope value="CGI.LAST_MODIFIED" type="String"><help><![CDATA[ 
		(Apache SSI) The last modification date of the document (file)
		requested by the user (in the default or #config defined
		format). This variable related to the file currently being
		accessed i.e. if you put this is an included 'footer' file
		is is the modification date of the footer NOT the base
		document (you need to use a simple 'wheeze' to pass a USER
		variable which contains the calling documents modification
		date (see here).
		Example: Thursday, 03-May-2001 17:18:45 EDT
	]]></help></scope>
	<scope value="CGI.LOCAL_ADDR" type="String"><help><![CDATA[ 
		(IIS) Returns the server address on which the request came
		in. This is important on computers where there can be
		multiple IP addresses bound to the computer, and you want to
		find out which address the request used.
	]]></help></scope>
	<scope value="CGI.LOGON_USER" type="String"><help><![CDATA[ 
		(IIS) The Windows account that the user is impersonating
		while connected to your Web server. Use CGI.REMOTE_USER,
		CGI.UNMAPPED_REMOTE_USER, or CGI.AUTH_USER to view the raw
		user name that is contained in the request header. The only
		time CGI.LOGON_USER holds a different value than these other
		variables is if you have an authentication filter installed.
	]]></help></scope>
	<scope value="CGI.PATH" type="String"><help><![CDATA[ 
		(Apache) The PATH(s) available to the server for this web site
		Example: /sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin 
	]]></help></scope>
	<scope value="CGI.PATH_INFO" type="String"><help><![CDATA[ 
		The extra path information, as given by the client. In other
		words, scripts can be accessed by their virtual pathname,
		followed by extra information at the end of this path. The
		extra information is sent as CGI.PATH_INFO.
	]]></help></scope>
	<scope value="CGI.PATH_TRANSLATED" type="String"><help><![CDATA[ 
		The server provides a translated version of CGI.PATH_INFO,
		which takes the path and does any virtual-to-physical mapping
		to it.
	]]></help></scope>
	<scope value="CGI.QUERY_STRING" type="String"><help><![CDATA[ 
		The query information that follows the ? in the URL that
		referenced this script.
	]]></help></scope>
	<scope value="CGI.REMOTE_ADDR" type="String"><help><![CDATA[ 
		The IP address of the remote host making the request.
	]]></help></scope>
	<scope value="CGI.REMOTE_HOST" type="String"><help><![CDATA[ 
		The hostname making the request. If the server does not have
		this information, it sets CGI.REMOTE_ADDR and leaves this
		unset.
	]]></help></scope>
	<scope value="CGI.REMOTE_IDENT" type="String"><help><![CDATA[ 
		If the HTTP server supports RFC 931 identification, then this
		variable is set to the remote user name retrieved from the
		server. Usage of this variable should be limited to logging
		only.
	]]></help></scope>
	<scope value="CGI.REMOTE_PORT" type="String"><help><![CDATA[ 
		(IIS) The client port number of the TCP connection.
	]]></help></scope>
	<scope value="CGI.REMOTE_USER" type="String"><help><![CDATA[ 
		If the server supports user authentication, and the script is
		protected, this is the username they have authenticated as.
		(Also available as CGI.AUTH_USER.)
	]]></help></scope>
	<scope value="CGI.REQUEST_BODY" type="String"><help><![CDATA[ 
		The entity body (if any) sent with an HTTP request or
		response is in a format and encoding defined by the
		Entity-Header fields. See the HTTP protocol specification
		for details.
	]]></help></scope>
	<scope value="CGI.REQUEST_METHOD" type="String"><help><![CDATA[ 
		The method with which the request was made. For HTTP, this
		"GET", "HEAD", "POST", etc.
	]]></help></scope>
	<scope value="CGI.REQUEST_URI" type="String"><help><![CDATA[ 
		(Apache) The URI for this request (relative to
		CGI.DOCUMENT_ROOT)
		Example: /tech/web/ssi.htm
	]]></help></scope>
	<scope value="CGI.SCRIPT_FILENAME" type="String"><help><![CDATA[ 
		(Apache) The path to the script being executed (relative to
		CGI.DOCUMENT_ROOT)
		Example: /tech/web/ssi.htm 
	]]></help></scope>
	<scope value="CGI.SCRIPT_NAME" type="String"><help><![CDATA[ 
		A virtual path to the script being executed, used for
		self-referencing URLs.
	]]></help></scope>
	<scope value="CGI.SCRIPT_TRANSLATED" type="String"><help><![CDATA[ 
		(IIS) The canonical physical path to the script listed in
		CGI.SCRIPT_NAME
		Example: \\?\c:\inetpub\wwwroot\vdir\default.asp
		(Note: IIS 5.1 and earlier: This server variable is not
		available.)
	]]></help></scope>
	<scope value="CGI.SERVER_ADMIN" type="String"><help><![CDATA[ 
		(Apache) The administrators e-mail address for this
		CGI.SERVER_NAME.
		Example: [email protected]
	]]></help></scope>
	<scope value="CGI.SERVER_NAME" type="String"><help><![CDATA[ 
		The servers hostname, DNS alias, or IP address as it appears
		in self-referencing URLs.
	]]></help></scope>
	<scope value="CGI.SERVER_PORT" type="String"><help><![CDATA[ 
		The port number to which the request was sent.
	]]></help></scope>
	<scope value="CGI.SERVER_PORT_SECURE" type="String"><help><![CDATA[ 
		(IIS) A string that contains either 0 or 1. If the request is
		being handled on the secure port, then this is 1. Otherwise,
		it is 0.
	]]></help></scope>
	<scope value="CGI.SERVER_PROTOCOL" type="String"><help><![CDATA[ 
		The name and revision of the information protocol this
		request came in with. Format: protocol/revision.
	]]></help></scope>
	<scope value="CGI.SERVER_SIGNATURE" type="String"><help><![CDATA[ 
		(Apache) The HTML string that may be embedded in the page to
		identify this host.
		Example: <address>Apache/1.3.14 Server at www.zytrax.com Port
		80</address>
	]]></help></scope>
	<scope value="CGI.SERVER_SOFTWARE" type="String"><help><![CDATA[ 
		The name and version of the information server software
		answering the request (and running the gateway).
		Format: name/version.
	]]></help></scope>
	<scope value="CGI.SSI_EXEC_DISABLED" type="String"><help><![CDATA[ 
		(IIS) Returns a 1 if the server-side include directive,
		#exec, is disabled. Otherwise, CGI.SSI_EXE_DISABLED returns a
		0. To enable or disable #exec, use the SSIExecDisablemetabase
		property. (Note: IIS 5.1 and earlier: This server variable is
		not available.)
	]]></help></scope>
	<scope value="CGI.UNENCODED_URL" type="String"><help><![CDATA[ 
		(IIS) Returns the raw, unencoded URL
		Example: /vdir/default.asp?querystring
		(Note: IIS 4.0 and earlier: This server variable is not
		available)
	]]></help></scope>
	<scope value="CGI.UNMAPPED_REMOTE_USER" type="String"><help><![CDATA[ 
		(IIS) The name of the user as it is derived from the
		authorization header sent by the client, before the user name
		is mapped to a Windows account (same as CGI.REMOTE_USER). If
		you have an authentication filter installed on your Web server
		that maps incoming users to accounts, use CGI.LOGON_USER to
		view the mapped user name.
	]]></help></scope>
	<scope value="CGI.URL" type="String"><help><![CDATA[ 
		(IIS) Gives the base portion of the URL, without any
		querystring or extra path information. For the raw URL, use
		CGI.HTTP_URL or CGI.UNENCODED_URL.
		Example: "/vdir/default.asp". 
	]]></help></scope>
	<scope value="CGI.URL_PATH_INFO" type="String"><help><![CDATA[ 
		(IIS) Use CGI.PATH_INFO instead. (Note: This server variable
		is only available on IIS 5.0.)
	]]></help></scope>
	<scope value="CGI.USER_NAME" type="String"><help><![CDATA[ 
		(Apache SSI) The user name of the web site in which this web
		site runs.
		Example: zytrax
	]]></help></scope>
	
	
	<!-- CFCATCH variables -->
	<scope value="CFCATCH.Type" type="String"><help><![CDATA[ 
		The exception's type, possible values: Application, Database,
		Template, Security, Object, MissingInclude, Expression, Lock,
		SearchEngine or a Custom Type.
	]]></help></scope>
	<scope value="CFCATCH.Detail" type="String"><help><![CDATA[ 
		A detailed message from the CFML compiler. This message,
		which can contain HTML formatting, can help to determine
		which tag threw the exception.
	]]></help></scope>
	<scope value="CFCATCH.ErrorCode" type="String"><help><![CDATA[ 
		The cfthrow tag can supply a value for this code through the
		errorCode attribute. For Type="Database", CFCATCH.ErrorCode
		has the same value as CFCATCH.SQLState. Otherwise, the value
		of CFCATCH.ErrorCode is the empty string.
	]]></help></scope>
	<scope value="CFCATCH.ExtendedInfo" type="String"><help><![CDATA[ 
		Custom error message information. This is returned only to
		CFCATCH tags for which the type attribute is "Application" or
		a custom type. Otherwise, the value of CFCATCH.ExtendedInfo
		is empty.
	]]></help></scope>
	<scope value="CFCATCH.Message" type="String"><help><![CDATA[ 
		The exception's default diagnostic message, if one was
		provided. If no diagnostic message is available, this is
		empty.
	]]></help></scope>
	<scope value="CFCATCH.TagContext" type="Array"><help><![CDATA[ 
		Array of tag information structures.
	]]></help></scope>
	<scope value="CFCATCH.TagContext[x].Column" type="Numeric" compatibility="obsolete"><help><![CDATA[ 
		Obsolete (retained for backwards compatibility). Always 0.
	]]></help></scope>
	<scope value="CFCATCH.TagContext[x].ID" type="String"><help><![CDATA[ 
		The tag in which the exception occurred. Exceptions in
		CFScript are indicated by two question marks (??). All custom
		tags, including those called directly, are identified as
		cfmodule.
	]]></help></scope>
	<scope value="CFCATCH.TagContext[x].Line" type="Numeric"><help><![CDATA[ 
		The line on the page in which the tag is located.
	]]></help></scope>
	<scope value="CFCATCH.TagContext[x].Raw_Trace" type="String"><help><![CDATA[ 
		The raw Java stack trace for the error.
	]]></help></scope>
	<scope value="CFCATCH.TagContext[x].Template" type="String"><help><![CDATA[ 
		The pathname of the application page that contains the tag.
	]]></help></scope>
	<scope value="CFCATCH.TagContext[x].Type" type="String"><help><![CDATA[ 
		The type of page; it is always a ColdFusion page.
	]]></help></scope>
	<!-- expression exceptions -->
	<scope value="CFCATCH.ErrNumber" type="String"><help><![CDATA[ 
		An internal expression error number.
		Available for expression exceptions.
	]]></help></scope>
	<!-- locking exceptions -->
	<scope value="CFCATCH.LockName" type="String"><help><![CDATA[ 
		The name of the affected lock. This is set to "anonymous" if
		the lock name is unknown.
		Available for locking exceptions.
	]]></help></scope>
	<scope value="CFCATCH.LockOperation" type="String"><help><![CDATA[ 
		The operation that failed. This is set to "unknown" if the
		failed operation is unknown.
		Available for locking exceptions.
	]]></help></scope>
	<!-- Missing include exceptions -->
	<scope value="CFCATCH.MissingFileName" type="String"><help><![CDATA[ 
		The name of the missing file.
		Available for missingInclude exceptions.
	]]></help></scope>
	<!-- Database exceptions -->
	<scope value="CFCATCH.NativeErrorCode" type="String"><help><![CDATA[ 
		The native error code associated with this exception.
		Database drivers typically provide error codes to assist in
		the diagnosis of failing database operations. The values
		assumed by CFCATCH.NativeErrorCode are driver-dependent. If
		no error code is provided, the value of
		CFCATCH.nativeErrorCode is -1. The value is 0 for queries of
		queries.
		Available for database exceptions.
	]]></help></scope>
	<scope value="CFCATCH.SQLState" type="String"><help><![CDATA[ 
		The SQLState code associated with this exception. Database
		drivers typically provide error codes to assist in the
		diagnosis of failing database operations. SQLState codes are
		more consistent across database systems than native error
		codes. If the driver does not provide an SQLState value, the
		value of CFCATCH.SQLState is -1.
		Available for database exceptions.
	]]></help></scope>
	<scope value="CFCATCH.SQL" type="String"><help><![CDATA[ 
		The SQL statement sent to the data source.
		Available for database exceptions.
	]]></help></scope>
	<scope value="CFCATCH.QueryError" type="String"><help><![CDATA[ 
		The error message as reported by the database driver.
		Available for database exceptions.
	]]></help></scope>
	<scope value="CFCATCH.Where" type="String"><help><![CDATA[ 
		If the query uses the cfqueryparam tag, query parameter
		name-value pairs.
		Available for database exceptions.
	]]></help></scope>
	
	
	<!-- CFERROR variables -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00001138.htm -->
	<!-- Type: Validation -->
	<scope value="CFERROR.InvalidFields" type="String"><help><![CDATA[ 
		Unordered list of validation errors that occurred. This
		includes any text that you specify in the value attribute
		or a hidden tag used to validate form input.
		Available for Validation type errors.
	]]></help></scope>
	<scope value="CFERROR.ValidationHeader" type="String"><help><![CDATA[ 
		Text for the header of the default validation message.
		Available for Validation type errors.
	]]></help></scope>
	<scope value="CFERROR.ValidationFooter" type="String"><help><![CDATA[ 
		Text for the footer of the default validation message.
		Available for Validation type errors.
	]]></help></scope>
	<!-- Exception and Request -->
	<scope value="CFERROR.Browser" type="String"><help><![CDATA[ 
		Browser that was running when the error occurred.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.DateTime" type="DateTime"><help><![CDATA[ 
		Date and time when the error occurred.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.Diagnostics" type="String"><help><![CDATA[ 
		Detailed error diagnostics.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.GeneratedContent" type="String"><help><![CDATA[ 
		Any content that ColdFusion generated in response to the
		request prior to the error.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.HTTPReferer" type="String"><help><![CDATA[ 
		Page containing the HTML link to the page on which the error
		occurred. This value is an empty string if the user specified
		the page directly in the browser. (string).
		Available for Exception and Request type errors
	]]></help></scope>
	<scope value="CFERROR.MailTo" type="String"><help><![CDATA[ 
		E-mail address of the administrator who should be notified.
		This value is set in the mailTo attribute of the cferror
		tag.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.QueryString" type="String"><help><![CDATA[ 
		URL query string of the client's request, if any.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.RemoteAddress" type="String"><help><![CDATA[ 
		IP address of the remote client.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="CFERROR.Template" type="String"><help><![CDATA[ 
		Page being executed when the error occurred.
		Available for Exception and Request type errors.
	]]></help></scope>
	<!-- Exception Only -->
	<scope value="CFERROR.Message" type="String"><help><![CDATA[ 
		Error message associated with the exception.
		Available for Exception type errors.
	]]></help></scope>
	<scope value="CFERROR.RootCause" type="java object"><help><![CDATA[ 
		Java servlet exception reported by the JVM as the cause of
		the "root cause" of the exception.
		Available for Exception type errors.
	]]></help></scope>
	<scope value="CFERROR.Type" type="String"><help><![CDATA[ 
		Exception type, possible values: Application, Database,
		Template, Security, Object, MissingInclude, Expression, Lock,
		SearchEngine or a Custom Type.
	]]></help></scope>
	<scope value="CFERROR.TagContext" type="Array"><help><![CDATA[ 
		Array of structures containing information for each tag in
		the tag stack The tag stack consists of each tag that is
		currently open.
		Available for Exception type errors.
	]]></help></scope>
	<scope value="CFERROR.TagContext[x].Column" type="Numeric" compatibility="obsolete"><help><![CDATA[ 
		Obsolete (retained for backwards compatibility). Always 0.
	]]></help></scope>
	<scope value="CFERROR.TagContext[x].ID" type="String"><help><![CDATA[ 
		The tag in which the exception occurred. Exceptions in CFScript
		are indicated by two question marks (??). All custom tags,
		including those called directly, are identified as cfmodule.
	]]></help></scope>
	<scope value="CFERROR.TagContext[x].Line" type="Numeric"><help><![CDATA[ 
		The line on the page in which the tag is located. (int)
	]]></help></scope>
	<scope value="CFERROR.TagContext[x].Raw_Trace" type="String"><help><![CDATA[ 
		The raw Java stack trace for the error.
	]]></help></scope>
	<scope value="CFERROR.TagContext[x].Template" type="String"><help><![CDATA[ 
		The pathname of the application page that contains the tag.
	]]></help></scope>
	<scope value="CFERROR.TagContext[x].Type" type="String"><help><![CDATA[ 
		The type of page; it is always a ColdFusion page.
	]]></help></scope>
	
	
	<!-- ERROR variables -->
	<!-- REFERENCE: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00001138.htm -->
	<!-- Type: Validation -->
	<scope value="ERROR.InvalidFields" type="String"><help><![CDATA[ 
		Unordered list of validation errors that occurred. This
		includes any text that you specify in the value attribute
		or a hidden tag used to validate form input.
		Available for Validation type errors.
	]]></help></scope>
	<scope value="ERROR.ValidationHeader" type="String"><help><![CDATA[ 
		Text for the header of the default validation message.
		Available for Validation type errors.
	]]></help></scope>
	<scope value="ERROR.ValidationFooter" type="String"><help><![CDATA[ 
		Text for the footer of the default validation message.
		Available for Validation type errors.
	]]></help></scope>
	<!-- Exception and Request -->
	<scope value="ERROR.Browser" type="String"><help><![CDATA[ 
		Browser that was running when the error occurred.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.DateTime" type="DateTime"><help><![CDATA[ 
		Date and time when the error occurred.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.Diagnostics" type="String"><help><![CDATA[ 
		Detailed error diagnostics.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.GeneratedContent" type="String"><help><![CDATA[ 
		Any content that ColdFusion generated in response to the
		request prior to the error.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.HTTPReferer" type="String"><help><![CDATA[ 
		Page containing the HTML link to the page on which the error
		occurred. This value is an empty string if the user specified
		the page directly in the browser. (string).
		Available for Exception and Request type errors
	]]></help></scope>
	<scope value="ERROR.MailTo" type="String"><help><![CDATA[ 
		E-mail address of the administrator who should be notified.
		This value is set in the mailTo attribute of the ERROR
		tag.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.QueryString" type="String"><help><![CDATA[ 
		URL query string of the client's request, if any.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.RemoteAddress" type="String"><help><![CDATA[ 
		IP address of the remote client.
		Available for Exception and Request type errors.
	]]></help></scope>
	<scope value="ERROR.Template" type="String"><help><![CDATA[ 
		Page being executed when the error occurred.
		Available for Exception and Request type errors.
	]]></help></scope>
	<!-- Exception Only -->
	<scope value="ERROR.Message" type="String"><help><![CDATA[ 
		Error message associated with the exception.
		Available for Exception type errors.
	]]></help></scope>
	<scope value="ERROR.RootCause" type="java object"><help><![CDATA[ 
		Java servlet exception reported by the JVM as the cause of
		the "root cause" of the exception.
		Available for Exception type errors.
	]]></help></scope>
	<scope value="ERROR.Type" type="String"><help><![CDATA[ 
		Exception type, possible values: Application, Database,
		Template, Security, Object, MissingInclude, Expression, Lock,
		SearchEngine or a Custom Type.
	]]></help></scope>
	<scope value="ERROR.TagContext" type="Array"><help><![CDATA[ 
		Array of structures containing information for each tag in
		the tag stack The tag stack consists of each tag that is
		currently open.
		Available for Exception type errors.
	]]></help></scope>
	<scope value="ERROR.TagContext[x].Column" type="Numeric" compatibility="obsolete"><help><![CDATA[ 
		Obsolete (retained for backwards compatibility). Always 0.
	]]></help></scope>
	<scope value="ERROR.TagContext[x].ID" type="String"><help><![CDATA[ 
		The tag in which the exception occurred. Exceptions in CFScript
		are indicated by two question marks (??). All custom tags,
		including those called directly, are identified as cfmodule.
	]]></help></scope>
	<scope value="ERROR.TagContext[x].Line" type="Numeric"><help><![CDATA[ 
		The line on the page in which the tag is located. (int)
	]]></help></scope>
	<scope value="ERROR.TagContext[x].Raw_Trace" type="String"><help><![CDATA[ 
		The raw Java stack trace for the error.
	]]></help></scope>
	<scope value="ERROR.TagContext[x].Template" type="String"><help><![CDATA[ 
		The pathname of the application page that contains the tag.
	]]></help></scope>
	<scope value="ERROR.TagContext[x].Type" type="String"><help><![CDATA[ 
		The type of page; it is always a ColdFusion page.
	]]></help></scope>
		
</scopes>
	</scopes>
</dictionary>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy