<cffunction
name="OnRequestStart"
access="public"
returntype="boolean"
output="true"
hint="Fires at the beginning of a page requested before the requested template is processed.">
<cfargument
name="TargetPage"
type="string"
required="true"
hint="The template that was requested by the user."
/>
<cfset var LOCAL = StructNew() />
<cfheader
statuscode="503"
statustext="Service Temporarily Unavailable"
/>
<cfheader
name="retry-after"
value="3600"
/>
<h1>
Down For Maintenance
</h1>
<p>
The web site is current down for maintenance and will
be back up shortly. Sorry for the inconvenience.
</p>
<cfreturn false />
</cffunction>