
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){document.location.href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?url=" + 
		document.location.href + "&lp=en_" + arrURLs[oSelect.selectedIndex - 1];
	}
}