@sunfighter: If you don't know what <cfif> is, then you probably shouldn't answer questions in the ColdFusion forum

However, good job on cleaning up that code...
@taunnt: What does your ColdFusion code look like that clears your label queue? Can you possibly just re-set
session.radioOption back to "edit" when you clear your queue? (i.e.
<cfset session.radioOption = "edit">)
Your HTML code should probably look like this in general though:
Code:
Edit <input type="radio" name="radioOption" value="Edit" onclick="this.form.submit();" <cfif session.radioOption eq "edit">checked="true"</cfif>><br />
Print <input type="radio" name="radioOption" value="Print" onclick="this.form.submit();" <cfif session.radioOption eq "print">checked="true"</cfif>><br />
Search <input type="radio" name="radioOption" value="search" onclick="this.form.submit();" <cfif session.radioOption eq "search">checked="true"</cfif>><br />
<input type="button" name="ClearLabels" value="Clear Labels" style="font-size: 9px;" onClick="this.form.submit();">
-Greg