﻿function translateToSpanish()
{
    var t = ((window.getSelection && window.getSelection()) ||
			 (document.getSelection && document.getSelection()) ||
			 (document.selection && document.selection.createRange && document.selection.createRange().text));

    var e = (document.charset || document.characterSet);

    if (t != '')
    {
        location.href = 'http://translate.google.com/translate_t?text=' + t + '&hl=en&langpair=auto|es&tbb=1&ie=' + e;
    }
    else
    {
        location.href = 'http://translate.google.com/translate?u=' + escape(location.href) + '&hl=en&langpair=auto|es&tbb=1&ie=' + e;
    }
}

/*function translateToSpanish()
{
    location.href = 'http://babelfish.yahoo.com/translate_url?doit=done&url=' + escape(location.href) + '&lp=en_es';
}*/


//http://babelfish.yahoo.com/translate_url?doit=done&url=http%3A%2F%2Fwww.altavista.com%2Fhelp%2Ffree%2Fmtwain_story&lp=en_es
