﻿function submitTranslate(t, dest) {
    var e = (document.charset || document.characterSet);
    var tranLocation = '';

    if (dest == 'en') {
        tranLocation = t;
    }
    else {
        tranLocation = 'http://translate.google.com/translate?u=' + encodeURIComponent(t) + '&hl=en&langpair=auto|' + dest + '&tbb=1&ie=' + e;
    }

    if (top.location == location) {
        location.href = tranLocation;
    } else {
        top.location.href = tranLocation;
    }

    return false;
}
