Making My ColdFusion Tags More Consistent

<!--- Run thread. --->
<cfthread
	name="objThread"
	action="run">
 
	<cfset THREAD.Foo = "Bar" />
 
</cfthread>
 
<!--- Join thread. --->
<cfthread
	name="objThread"
	action="join"
	/>

For Cut-and-Paste