Well, guys, as usual, I was making this harder than it had to be. Here's what I did:
Within my CFOUTPUT for the search results, I used "GetFileFromPath(#URL#)" to isolate the file name, then did a query against my database using the file name as my criteria. That gave me my date, and then I did a "DateCompare" to determine if the document was "New".
<CFOUTPUT QUERY="GetSearchInfo" STARTROW="#StartRow#" MAXROWS="#OnEachPage#">
<CFIF CurrentRow MOD 2 EQ 0>
<CFSET COLOR="#Application.LightColor#">
<CFELSE>
<CFSET COLOR="#Application.Lighter#">
</CFIF>
<cfset MyFileName = GetFileFromPath(#URL#)>
<cfquery name="GetMyInfo"
datasource="#Application.Datasource#">
SELECT *
FROM DocumentTable
WHERE DocFileName = '#MyFileName#'
</cfquery>
<cfif #GetMyInfo.RecordCount# EQ 0>
<cfset MyDate = #OneMonthAgo#>
<cfelse>
<cfset MyDate = #GetMyInfo.DocCreateDateTime#>
</cfif>
<TABLE WIDTH="100%" BORDER="1" BORDERCOLOR="#Application.DarkColor#">
<TR BGCOLOR="#Color#">
<CFSET CheckMyDate = DateCompare(MyDate,TwoWeeksAgo)>
<cfif CheckMyDate EQ 1>
<td width="50"><img src="../CommonFiles/Images/New1.gif" alt="" width="35" height="17" border="0"></td>
<cfelse>
<td width="50"><img src="../CommonFiles/Images/TransGif.gif" alt="" width="36" height="18" border="0"></td>
</cfif>
<TD WIDTH="10%">#Score#</TD>
<TD COLSPAN="2" WIDTH="90%"><A CLASS="Normal" HREF="#Application.DocLocation##URL#" TARGET="_blank"><STRONG>#Title#</STRONG></A></TD>
</TR>
</TABLE>
</CFOUTPUT> Calista :-X
Jedi Knight,
Champion of the Force