function Translate(selectedlang) {
        if (location.hostname == 'www.francize.net' && selectedlang.value == 'ro|ro')
                return;
        else if(location.hostname != 'www.francize.net' && selectedlang.value == 'ro|ro')
                location.href = done('u');
        else if(location.hostname == 'www.francize.net' && selectedlang.value != 'ro|ro')
                location.href = 'http://translate.google.com/translate_p?hl=en&langpair=' + selectedlang.value + '&u=' + location.href;
        else
                location.href = 'http://translate.google.com/translate_p?hl=en&langpair=' + selectedlang.value + '&u=' + done('u');
}


function done(name) {
        name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");

        var origURL = "[\\?&]"+name+"=([^&#]*)";
        var orig = new RegExp(origURL);
        var results = orig.exec(location.href);

        if(results == null)
                return 'www.francize.net';
        else
                return results[1];
}