<tr>
|
<td>
|
<table class="topheader-table" width="100%" height="90">
|
<tr>
|
<td width="240"> <!--- <a href="http://www.mtn.co.za"><img src="http://<cfoutput>#CGI.HTTP_HOST#</cfoutput>/common/images/sitelogo.gif" 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 not IsDefined("Attributes.nomenu")>
|
<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>
|
</cfif>
|