
var arrURLs = new Array;

arrURLs[0] = "de"; // German
arrURLs[1] = "fr"; // French
arrURLs[2] = "it"; // Italian
arrURLs[3] = "es"; // Spanish
arrURLs[4] = "pt"; // Portuguese
arrURLs[5] = "nl"; // Dutch
arrURLs[6] = "zh"; // Chinese-simp
arrURLs[7] = "zt"; // Chinese-trad
arrURLs[8] = "el"; // Greek
arrURLs[9] = "ja"; // Japanese
arrURLs[10] = "ko"; // Korean

function lngSelect_onchange(oSelect)
{

	if(oSelect.selectedIndex)
	{

		var answer = confirm("The translation to other languages will be made automatically with Babelfish web service, and it can be low quality. Do you want to proceed?\n\n" +
		"Attention: do not place your orders from the translated pages - that won't work. Use english version only to purchase from our site!")
	
		if (answer)
		{
			document.location.href="http://babelfish.yahoo.com/translate_url?doit=done&tt=url&intl=1&fr=bf-res&trurl=" +
			escape(document.location.href) + "&lp=en_" + arrURLs[oSelect.selectedIndex - 1] + "&btnTrUrl=Translate";
		}
	}
}