Actually, I think it may fit. I tried the script using document.onmousemove in a separate file with just plain text and it worked. When I use it for my page, it does nothing.
------------------------------------------------------------------
<a name="top"></a>
<cfsavecontent variable="sort_script">
<script type="text/javascript" src="scripts/sorttable.js"></script>
<script type="text/javascript" src="scripts/reload.js"></script>
</cfsavecontent>
<cfhtmlhead text="#sort_script#"/>
<body onLoad="reloadPage()">
<cfif attributes.qryGetOrders.recordcount>
<cfquery name="ordsearch" dbtype="query">
SELECT * FROM attributes.qryGetOrders ORDER BY Comp_Order_Ship_Date, EK_ClientName, EK_ProductName, EK_OrderID
</cfquery>
<cfelse>
<cfset ordsearch = attributes.qryGetOrders/>
</cfif>
<CFOUTPUT>
<cfsavecontent variable="table">
#app.GenTable#
<TR BGCOLOR="#app.S_Color.TableHeader#">
<th>Complete</th>
<th>Check Out</th>
<th>Ship Date</th>
<th>Order ID</th>
<th>Product</th>
<th>Plan Sponsor</th>
<th>Order Status</th>
<th>Order Date</th>
<th>Total Qty</th>
</tr>
<!--- Sets up the first line of the tab-delimited file --->
<cfset output="Ship Date" & chr(9) & "Order ID" & chr(9) & "Product" & chr(9) & "Plan Sponsor" & chr(9) & "Order Status" & chr(9) & "Order Date" & chr(9) & "Total Qty" & chr(10)>
<CFLOOP QUERY="ordsearch">
<cfset show = 1>
<cfif len(EK_FullFill_Cmmts) and AcctMgrReleased eq 0>
<cfset show = 0>
</cfif>
<cfif ShippingInstructionsExist and AcctMgrReleased eq 0>
<cfset show = 0>
</cfif>
<cfif show eq 1>
<!--- Process the Plan name filter if any --->
<!--- <cfset orddisp = System_Abbr & "-" & EK_OrderID>
<cfset shipdate = DateFormat(comp_order_ship_date, "mm/dd/yyyy")>
<cfset orderdate = DateFormat(EK_OrderTS, "mm/dd/yyyy")> --->
<!--- Process the order id filter if any --->
<TR BGCOLOR="#app.S_Color.Table#" ALIGN="CENTER">
<td>
<cfif Status_Code eq 3 or Status_Code eq 6>
<cfif CheckedOut EQ 0>
<cfif Status_Code NEQ 6>
<input type="CheckBox" name="CheckInOrderID" value="#OrderID#">
<cfelse>
<img src="../images/icons/Rarrow.gif" alt=" ">
</cfif>
<cfelse>
<img src="../images/icons/Rarrow.gif" alt=" ">
</cfif>
<cfelse>
</cfif>
</td>
<td>
<cfif Status_Code eq 3 or Status_Code eq 6>
<cfif CheckedOut EQ 0>
<a href="index.cfm?fuseaction=printing.checkoutjob&CheckOutOrder=#OrderID#">
<img src="../images/icons/view.gif" alt="View"></a>
<cfelse>
<font color="red">#UserName#</font>
</cfif>
<cfelse>
</cfif>
</td>
<TD>#shipdate#</TD>
<td><a href="index.cfm?fuseaction=printing.ordrpt&orderid=#OrderID#">#orddisp#
<cfif len(ordsuffix)>_#ordsuffix#</cfif></a>
<cfif MessageExists>
<A HREF="javascript

opUp('../dsp/dsp_viewnotes.cfm?orderid=#OrderID#&maindsn=#request.maindsn#')">
<img src="../images/icons/help3.gif" alt=" " border=0></a>
</cfif></td>
<td>#prodname#</td>
<td>#left(compname, 10)#</td>
<TD><cfif Status_Code_Desc EQ "On Hold">
<font color="red">#Status_Code_Desc#</font>
<cfelse>
#Status_Code_Desc#
</cfif>
</TD>
<TD>#orderdate#</TD>
<td>#TotQty#</td>
</tr>
<!--- Prepare the line for the tab delimited file --->
<cfset output = output & shipdate & chr(9) & orddisp& chr(9) & Plan_Sponsor & chr(9) & left(compname, 10)& chr(9) & Status_Code_Desc& chr(9) & orderdate & chr(9) & TotQty & chr(9) >
</cfif>
</cfloop>
</cfsavecontent>
#request.orderQueueSearchForm#
<cfif ordsearch.RecordCount GT 5>
<table width="98%" border="0">
<tr>
<td width="90%" colspan="3"> </td>
<td width="8%" align="center" bgcolor="##CCCCCC"><a href="##bottom"><font face="Arial" size="2"><strong>Bottom of Page</strong></font></a></td>
</tr>
<tr>
<td align="right">
<form action="index.cfm?fuseaction=printing.quickcomplete" method="post" >
<input type="Submit" name="QuickC" value="Quick Complete">
</form>
</td>
<td align="right">
<form action="index.cfm?fuseaction=printing.exportcsv" method="post" target="_blank">
<input type="hidden" name="output" value="#output#">
<input type="Submit" name="ExportXL" value="Export to Excel">
</form>
</td>
<td align="center">
<form action="index.cfm?fuseaction=#myfusebox.originalcircuit#.main" method="post">
<input type="Submit" name="Cancel" value="Cancel/Return to #main.section# Menu">
</form>
</td>
<td> </td>
</tr>
</table>
</cfif>
<br>
<br>
<P><B>The following orders are available to print:</B></P>
<!--- Table modified to have Sortable Columns --->
<FORM>
#table#
</TABLE>
<br>
<b>Initials:</b> <input type="text" Name="Initial" Size="20" Maxlength="50">
<br>
<a name="bottom"></a>
<br><br>
<table width="98%" border="0">
<tr>
<td width="90%" colspan="4"> </td>
<td width="8%" align="center" bgcolor="##CCCCCC">
<a href="##top"><font face="Arial" size="2"><strong>Top of Page</strong></font></a>
</td>
</tr>
<tr>
<td align="right"><input type="Reset" name="ResetForm" value="Reset Choice"></td>
</form>
<td align="right">
<form action="index.cfm?fuseaction=printing.quickcomplete" method="post" ><br>
<input type="Submit" name="QuickC" value="Quick Complete">
</form>
</td>
<td align="right">
<form action="index.cfm?fuseaction=printing.exportcsv" method="post" target="_blank"><br>
<input type="hidden" name="output" value="#output#">
<input type="Submit" name="ExportXL" value="Export to Excel">
</form>
</td>
<td align="center">
<form action="index.cfm?fuseaction=#myfusebox.originalcircuit#.main" method="post"><br>
<input type="Submit" name="Cancel" value="Cancel/Return to #main.section# Menu">
</form>
</td>
<td> </td>
</tr>
</table>
</cfoutput>
</body>