javascript:%20function%20x()%20{%20%20%20%20loc%20=%20location.href;%20%20%20%20lang%20=%20prompt('Choose%20destination%20language%20(2%20chars%20abbreviation):%20',%20'en');%20%20%20%20if%20(lang.length%20==%202)%20{%20%20%20%20%20%20%20flag%20=%20true;%20%20%20%20}%20else%20{%20%20%20%20%20%20%20flag%20=%20false;%20%20%20%20%20%20%20alert('Invalid%20language%20abbreviation.')%20%20%20%20}%20%20%20%20text%20=%20'';%20%20%20%20if%20(window.getSelection)%20{%20%20%20%20%20%20%20text%20=%20window.getSelection();%20%20%20%20}%20else%20if%20(document.getSelection)%20{%20%20%20%20%20%20%20text%20=%20document.getSelection();%20%20%20%20}%20else%20if%20(document.selection)%20{%20%20%20%20%20%20%20text%20=%20document.selection.createRange().text;%20%20%20%20}%20}%20function%20y()%20{%20%20%20%20if%20((flag%20==%20true)%20&&%20(text%20==%20''))%20{%20%20%20%20%20%20%20var%20res%20=%20window.open(%20'http://translate.google.com/translate?u='%20+%20encodeURIComponent(loc)%20+%20'&sl=auto&tl='%20+%20lang,%20'left='%20+%20((window.screenX%20||%20window.screenLeft)%20+%2010)%20+%20',top='%20+%20((window.screenY%20||%20window.screenTop)%20+%2010)%20+%20',height=500px,width=640px,resizable=1,scrollbars=1');%20%20%20%20%20%20%20window.setTimeout(function()%20{%20%20%20%20%20%20%20%20%20%20res.focus()%20%20%20%20%20%20%20},%20300)%20%20%20%20}%20}%20function%20z()%20{%20%20%20%20if%20((flag%20==%20true)%20&&%20(text%20!=%20''))%20{%20%20%20%20%20%20%20var%20res%20=%20window.open('http://translate.google.com/translate_t?text='%20+%20text%20+%20'&sl=auto&tl='%20+%20lang,%20'gTranslate_popup',%20'left='%20+%20((window.screenX%20||%20window.screenLeft)%20+%2010)%20+%20',top='%20+%20((window.screenY%20||%20window.screenTop)%20+%2010)%20+%20',height=500px,width=640px,resizable=1,scrollbars=1');%20%20%20%20%20%20%20window.setTimeout(function()%20{%20%20%20%20%20%20%20%20%20%20res.focus()%20%20%20%20%20%20%20},%20300)%20%20%20%20}%20}%20x();%20y();%20z();