/**
* Change l'url du francais vers l'anglais ou vice-verca
* Auteur: Rémy Dufour <rdufour@propage.com>
* Date: 2005-07-05
*
* Propage Technologies~Inter@ctives
*/
function _cl(langue1, langue2)
{
    var loc = document.location.pathname;
    if (loc == '/' || loc == '/index.html') {
        document.location = '/index_en.html';
    } else if (loc == '/index_en.html') {
        document.location = '/index.html';
    } else {
        document.location = loc.replace(langue1,langue2);
    }
}
