<tr>
|
<td>
|
<table class="topheader-table">
|
<tr>
|
<td width="240"><a href="http://nisweb04:8307/tevo/tevo/drawchart.cfm?qnum=1&filter=noOrder"><img src="../../common/images/70x70.gif" width="74" height="74" border="0"></a></td>
|
<td align="center"><font color="#ffffff" size="+3"><cfoutput>#Attributes.title#</cfoutput></font></td>
|
<td width="240" align="right">
|
<cfif not IsDefined("Attributes.nologo")>
|
<img src="../common/images/Surizon-Tech-Logo-70_2.gif" width="133" height="70">
|
<cfelse>
|
|
</cfif>
|
</td>
|
</tr>
|
</table>
|
</td>
|
</tr>
|
<cfif FileExists("#application.path#/menu/menu.xml")>
|
<cffile action="read" file="#application.path#/menu/menu.xml" variable="menu" />
|
<cfset xmlDoc = XmlParse(#menu#)>
|
<cfset numLinks = ArrayLen(xmlDoc.menu.XmlChildren)>
|
<tr>
|
<td>
|
<table class="bottomheader-table">
|
<tr>
|
<cfloop index="i" from="1" to="#numLinks#">
|
<cfoutput>
|
<td nowrap align="center">
|
<a href="#xmlDoc.menu.link[i].XmlAttributes.href#"
|
<cftry>
|
<cfif xmlDoc.menu.link[i].XmlAttributes.target is not "">
|
target="#xmlDoc.menu.link[i].XmlAttributes.target#"
|
</cfif>
|
<cfcatch type="any">
|
</cfcatch>
|
</cftry>
|
>#xmlDoc.menu.link[i].XmlAttributes.name#</a>
|
</td>
|
</cfoutput>
|
</cfloop>
|
<td width="95%"> </td>
|
</tr>
|
</table>
|
</td>
|
</tr>
|
</cfif>
|