function browseSelections(sStartPath) {

    var sLocation;
    
    var sFilename=sStartPath.replace(/\/valore\//i, "");
    
    switch (sFilename){
 
        case "index.html" :  sLocation = "currencyrisk.html";  break;
        case "currencyrisk.html" :  sLocation = "chauvet.html";  break;
        case "chauvet.html" :  sLocation = "ifiokibanga.html";  break;
        case "ifiokibanga.html" :  sLocation = "globalmarkets.html";  break;
        case "globalmarkets.html" :  sLocation = "growthspiral.html";  break;
        case "growthspiral.html" :  sLocation = "interview.html";  break;
        case "interview.html" :  sLocation = "multilateral.html";  break;
        case "multilateral.html" :  sLocation = "singh.html";  break;
        case "singh.html" :  sLocation = "montesquieu.html";  break;
        case "montesquieu.html" :  sLocation = "index.html";  break;
        case "y2k.html" :  sLocation = "nafta-y2k.html";  break;
        case "nafta-y2k.html" :  sLocation = "index.html";  break;
          
       default : 
           sLocation="index.html";
           break;   
    }

    document.location.href = sLocation;

}

