function go(n){
  
  switch (n) {
  
//====================================================
// URL for WHO WE ARE button 
//====================================================
  case '1':
    location = "/who.html";
    break;    

//====================================================
// URL for SOLUTIONS button 
//====================================================
  case '2':
   location="/solutions.html";   
    break;
    
//====================================================
// URL for PARTNERS button 
//==================================================== 
  case '3':
    location="/partners.html";   
    break;
  
//====================================================
// URL for MEMBERS TOOLS button 
//====================================================    
  case '4':
    location="/members.cfm";
    break;

//====================================================
// URL for CONTACT US button 
//====================================================  
  case '5':
    location="/contact.html";   
    break;
  
//====================================================
// URL for WEB DESIGN button 
//====================================================  
  case '10':
    location="/webdesign.html";   
    break;

//====================================================
// URL for WEB HOSTING button 
//====================================================  
  case '11':
    location="/hosting.html";   
    break;
    
//====================================================
// URL for NETWORK SOLUTIONS button 
//====================================================  
  case '12':
    location="/network.html";   
    break;
    
//====================================================
// URL for DOMAIN REGISTRATION button 
//====================================================  
  case '13':
    location="/domain.html";   
    break;

//====================================================
// URL for DATABASE DESIGN button 
//====================================================  
  case '14':
    location="/database.html";   
    break;

//====================================================
// URL for INTERNET ACCESS button 
//====================================================  
  case '15':
    location="/internet.html";   
    break;
    
//====================================================
// URL for E-COMMERCE button 
//====================================================  
  case '16':
    location="/ecommerce.html";   
    break;

//====================================================
// URL for EXCHANGE SERVICES button 
//====================================================  
  case '17':
    location="/exchange.html";   
    break;

//====================================================
// URL for GLOBAL ROAMING button 
//====================================================  
  case '18':
    location="/global.html";   
    break;

//====================================================
// URL for INQUIRE button 
//====================================================  
  case '50':
    location="/inquire.cfm";
    break;

//====================================================
// URL for INQUIRE web design button 
//====================================================  
  case '51':
    location="/inquire.cfm?solution=9";
    break;

//====================================================
// URL for INQUIRE web hosting button 
//====================================================  
  case '52':
    location="/inquire.cfm?solution=10";
    break;

//====================================================
// URL for INQUIRE network solutions button 
//====================================================  
  case '53':
    location="/inquire.cfm?solution=8";
    break;

//====================================================
// URL for INQUIRE domain registration button 
//====================================================  
  case '54':
    location="/inquire.cfm?solution=1";
    break;

//====================================================
// URL for INQUIRE database design button 
//====================================================  
  case '55':
    location="/inquire.cfm?solution=2";
    break;

//====================================================
// URL for INQUIRE Internet access button 
//====================================================  
  case '56':
    location="/inquire.cfm?solution=7";
    break;

//====================================================
// URL for INQUIRE E-Commerce button 
//====================================================  
  case '57':
    location="/inquire.cfm?solution=4";
    break;

//====================================================
// URL for INQUIRE Exchange button 
//====================================================  
  case '58':
    location="/inquire.cfm?solution=3";
    break;

//====================================================
// URL for INQUIRE Global Roaming button 
//====================================================  
  case '59':
    location="/inquire.cfm?solution=6";
    break;

//====================================================
// URL for INQUIRE E-Mail Virus Scanning button 
//====================================================  
  case '60':
    location="/inquire.cfm?solution=5";
    break;

//====================================================
// URL for ORDER Bronze Web Hosting 
//====================================================  
  case '81':
    location="/order.cfm?order=1";
    break;

//====================================================
// URL for ORDER Silver Web Hosting 
//====================================================  
  case '82':
    location="/order.cfm?order=2";
    break;

//====================================================
// URL for ORDER Gold Web Hosting 
//====================================================  
  case '83':
    location="/order.cfm?order=3";
    break;

//====================================================
// URL for ORDER Platinum Web Hosting 
//====================================================  
  case '84':
    location="/order.cfm?order=4";
    break;

//====================================================
// URL for ORDER Bronze Internet Access 
//====================================================  
  case '85':
    location="/order.cfm?order=5";
    break;

//====================================================
// URL for ORDER Silver Internet Access 
//====================================================  
  case '86':
    location="/order.cfm?order=6";
    break;

//====================================================
// URL for ORDER Gold Internet Access 
//====================================================  
  case '87':
    location="/order.cfm?order=7";
    break;

//====================================================
// URL for ORDER Platinum Internet Access 
//====================================================  
  case '88':
    location="/order.cfm?order=8";
    break;

//====================================================
// URL for HOME button 
//====================================================  
  case 'h':
    location="/index.html";   
    break;
  
//====================================================
// DEFAULT URL
//====================================================  
  default:
    location="/index.html";   
  }
  
}