

if (menuArch.length>0)
{ 
document.write('<table border="2" width="220" bordercolorlight="#FFCC66" bordercolordark="#333333" bordercolor="#333333" cellspacing="3" cellpadding="3">');

document.write('<tr><td width="100%"><b><font size="4" color="#FFCC66">');
document.write(menuArch[0][0]);
document.write('</font></b><br><font size="3" color="#FFCC66">');
document.write(menuArch[0][1]);
document.write('</font>');

for (i=menuArch[0].length-1;i>=2;i--)
  {
  if (menuArch[0][i])
    {
    document.write('<br><br><font size="3" color="#cccccc">');
    document.write(menuArch[0][i][0]);
    document.write('</font><br>');
    document.write('<font size="3" color="#cccccc"><a href="');
    document.write(menuArch[0][i][2]);
    document.write('">');
    document.write(menuArch[0][i][3]);
    document.write('</a></font>');
    }
  }

document.write('<br></td></tr></table>');
}