/**
* Changement de langue "mirroir"
* Auteur: Rémy Dufour <rdufour@propage.com>
* Date: 2007-07-16
*
* (c) Propage Technologies~Inter@ctives
*/
function _cl( l_from, l_to )
{
    var loc = document.location.pathname;

    // Change en francais
    switch (l_to) {
    case 'fr':
        if (loc == '/index_en.html' || loc == '/index_es.html') {
            document.location = '/index.html';
        } else {
            document.location = loc.replace('/' + l_from + '/', '/' + l_to + '/');
        } // if
        break;

    case 'en':
        if (loc == '/index.html' || loc == '/index_es.html' || loc == '/' || loc == '') {
            document.location = '/index_en.html';
        } else {
            document.location = loc.replace('/' + l_from + '/', '/' + l_to + '/');
        } // if
        break;

    case 'es':
        if (loc == '/index.html' || loc == '/index_en.html' || loc == '/' || loc == '') {
            document.location = '/index_es.html';
        } else {
            document.location = loc.replace('/' + l_from + '/', '/' + l_to + '/');
        } // if
        break;

    }
} // function

//javascript:_cl('fr', 'en');
