google.load("language", "1");
    function translate(){
        var from = document.getElementById("kys").innerHTML;
        google.language.translate(from, "", "fr", function(result) {
            if (!result.error) {
              var fr=document.getElementById("frsrc");
			  fr.href="http://www.etwinternational.fr/productlist.aspx?searchkeyword="+result.translation;
			  fr.onclick=""
            }
        });
		google.language.translate(from, "", "ru", function(resultru) {
            if (!resultru.error) {
              var ru=document.getElementById("rusrc");
			  ru.href="http://www.etwinternational.ru/productlist.aspx?searchkeyword="+resultru.translation;
			  ru.onclick=""
            }
        });
		google.language.translate(from, "", "es", function(resultes) {
            if (!resultes.error) {
              var es=document.getElementById("essrc");
			  es.href="http://www.etwinternational.es/productlist.aspx?searchkeyword="+resultes.translation;
			  es.onclick=""
            }
        });
		google.language.translate(from, "", "pt", function(resultpt) {
            if (!resultpt.error) {
              var pt=document.getElementById("ptsrc");
			  pt.href="http://www.etwinternational.com.pt/productlist.aspx?searchkeyword="+resultpt.translation;
			  pt.onclick=""
            }
        });
		google.language.translate(from, "", "de", function(resultde) {
            if (!resultde.error) {
              var de=document.getElementById("desrc");
			  de.href="http://www.etwinternational.de/productlist.aspx?searchkeyword="+resultde.translation;
			  de.onclick=""
            }
        });
    }
