    var loc_str = location.pathname + location.hash + location.search;
    var currHost = window.location.hostname;
    if ((currHost != "ozone.unep.org") && (currHost != "ozonevr1")) 
        loc_str= loc_str.replace(/^\/ozone/i, "");
    var en_str = '"' + loc_str.replace(/\/french\//i, "/") + '"|English';
    var sp_str = '"' + loc_str.replace(/\/french\//i, "/spanish/") + '"|Español';
    var myMenu = new Array(
'"/french/"|Accueil',
//'"/french/About_the_Secretariat/"|A propos du Secrétariat',
//'"/french/Treaties_and_Ratification/"|Trait&eacute;s et ratification',
//'"/french/Information_for_the_Parties/"|Informations pour les Parties',

//'"/french/Meeting_Documents/"|Documents des r&eacute;unions',
// '"/Teap/"|GETE',
//'"/french/Events/"|Calendrier',
//'"/french/Links/"|Ressources suppl&eacute;mentaires',
//'"/french/Contacts/"|Nous contacter',
   
   //'"/french/20th_Anniversary/"|Prix et concours pour le 20e anniversaire', 
    '"/french/Events/"|Events/Calendrier/Réunions Anciens Lauréats', 
    '"/french/Ratification_status/"|Évolution du PM et État de ratification',
	'"/french/Meeting_Documents/upcoming_meetings.shtml"|Réunions prochaines', 
    '"/french/Meeting_Documents/"|Documents des réunions précédentes',
    '"/french/Publications/"|Communiqué de Presse et Publications',
	'"/french/Assessment_Panels/"|Les groupes d’évaluation', 
    '"/french/Exemption_Information/"|Information sur l’exemption', 
    '"/french/Data_Reporting/"|Accès et Communication des données', 
    '"/french/Frequently_Asked_Questions/"|Foires aux Questions ',
  
 en_str, sp_str);

    var str_align = '';
    var str_spc = '';
    var str_tbl_open = '<table width="177" border="0" cellpadding="0" cellspacing="0" background="/ozone/includes/images/banner-bk111.jpg">';
    var str_tbl_cls = '</table>';
    var str_row = '<tr> <td height="7" ><img src="/ozone/includes/images/bullet.gif" width="162" height="7"></td></tr>'
    
    document.writeln(str_tbl_open);
    document.writeln(str_row);
    var no_langs = 0;
    if (location.protocol == 'https:') { no_langs = 2; }

    for (i=0; i < myMenu.length - no_langs; i++) {
        if (i == myMenu.length - 2) { str_br = '<BR><BR>'; } else { str_br = '';}
        if ((currHost != "ozone.unep.org") && (currHost != "ozonevr1")) 
            myMenu[i] = myMenu[i].replace(/\//, '/ozone/');
        myMenu[i] = myMenu[i].replace(/\//, 'http://' + currHost + '/');
        myMenu[i] = myMenu[i].replace(/\|/, ' class="menu">' + str_br);
        if (i >= myMenu.length - 2) {
            str_spc = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'; 
            str_align = ' align=right';
        }
        document.writeln('<tr> <td ' + str_align + '>&nbsp;<a href=' + myMenu[i] 
                + '</a>' + str_spc + '</td></tr>');
        document.writeln(str_row);
    }
    document.writeln(str_tbl_cls);
