// JavaScript Document: Google Translation// Google Translate headvar GoogT = "http://translate.google.com/translate?u="// Language variantsvar Fra = "&langpair=en%7Cfr&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Ger = "&langpair=en%7Cde&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Ita = "&langpair=en%7Cit&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Por = "&langpair=en%7Cpt&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Esp = "&langpair=en%7Ces&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";/* beta vars */var Arab = "&langpair=en%7Car&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Chi = "&langpair=en%7Czh-CN&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Jpn = "&langpair=en%7Cja&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Kor = "&langpair=en%7Cko&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";var Rus = "&langpair=en%7Cru&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";// Functionsfunction transFra () {	window.location = GoogT +escape(document.URL) + Fra;}function transGer () {	window.location = GoogT +escape(document.URL) + Ger;}function transIta () {	window.location = GoogT +escape(document.URL) + Ita;}function transPor () {	window.location = GoogT +escape(document.URL) + Por;}function transEsp () {	window.location = GoogT +escape(document.URL) + Esp;}function transArab () {	window.location = GoogT +escape(document.URL) + Arab;}function transChi () {	window.location = GoogT +escape(document.URL) + Chi;}function transJpn () {	window.location = GoogT +escape(document.URL) + Jpn;}function transKor () {	window.location = GoogT +escape(document.URL) + Kor;}function transRus () {	window.location = GoogT +escape(document.URL) + Rus;}/*<script type="text/javascript" language="JavaScript"><!--document.write('<a href="http://example.com/form.html?'); // "A" tag begindocument.write('url='+escape(document.URL)); // optional URL printdocument.write('&'); // omit line unless both URL and title are printeddocument.write('title='+escape(document.title)); // optional title printdocument.write('">');                                     // "A" tag finishdocument.write('Recommend this page.');                   // link textdocument.write('</a>');                                   // cancel "A" tag//--></script>*/