function nvh_sitemap_display(path, node)
{
   var strClass      = "aurorasitemap-level" + node.m_level;
   var strClassHover = strClass + "hover";

   if (node.m_level > 0)
   {
      document.write("<tr>");
      document.write("   <td class='" + strClass + "' onmouseover=\"className='" + strClassHover + "';\" onmouseout=\"className='" + strClass + "';\">");
      document.write("      <table cellspacing=0 cellpadding=0>");
      document.write("         <tr>");
//LarryBoy 03-28-05 Added logic to use redirectURL if it exists
	sm_url = (customSectionPropertyExists(node.cp_cspRedirectURL) ? getCustomSectionProperty(node.cp_cspRedirectURL) : g_httpCgiUrl+"nodeId="+node.m_id );
      document.write("            <td width='100%'><a href='" + sm_url + "'>" + node.m_label + "</a></td>");
//document.write("            <td width='100%'><a href='" + g_httpCgiUrl+"nodeId="+node.m_id + "'>" + node.m_label + "</a></td>");
//LarryBoy 03-38-05 End
      document.write("         </tr>");
      document.write("      </table>");
      document.write("   </td>");
      document.write("</tr>");
   }

   if (node.m_level <= 6)
      for (var i = 0 ; i < node.m_subNodes.length ; i++)
         nvh_sitemap_display(path, node.m_subNodes[i]);
}
