document.write('<ul>');

var bottomMenu = new Array("Home","Products", "Support","Partners","About Us", "Copyrights", "Terms of Use", "Privacy");
var bottomMenuLinks ;          
        
  
if(root =="No")
{
    bottomMenuLinks = new Array("../index.htm", "../products/overview.htm", "../support/overview.htm",  "../partners/partners.htm","../company/aboutUs.htm", "../company/copyrights.htm", "../company/termsofuse.htm","../company/privacy.htm"); 
 }
 else if(root =="Yes")
 {
    bottomMenuLinks = new Array("index.htm", "products/overview.htm", "support/overview.htm",  "partners/partners.htm","company/aboutUs.htm","company/copyrights.htm","company/termsofuse.htm","company/privacy.htm");     
 }
 
 for(index = 0; index < bottomMenu.length; index++)
 {
 
   
    if(index != (bottomMenu.length - 1))
    {
       document.write('<li ><a href='+bottomMenuLinks[index]+' >'+bottomMenu[index]+'</a></li>');   
    }
    else
    {
         document.write('<li class="last"><a href='+bottomMenuLinks[index]+'>'+bottomMenu[index]+'</a></li>');   
    }      
            
        
 }
 document.write('</ul>');
