function cleanuplangURL() {	theURL = document.URL;	if (theURL.indexOf('tranexp.com') > 0) {		//Already translated Find the base address		theURL = unescape(theURL.substr(theURL.indexOf('&url=') + 5));	}	if (theURL.indexOf('/Disney/') > 0) {		theURL = 'http://www.hiddenmickeys.org/' + theURL.substr(theURL.indexOf('/Disney/') + 8);	}	return theURL;}function checkLanguage() {	if (document.tranexp.to.selectedIndex <= 0) {		return false;	}	if (document.tranexp.to.selectedIndex == 1) {				window.location.href = cleanuplangURL();		return false;	}	return true;}document.write('<FORM NAME="tranexp" METHOD="get" ACTION="http://www.tranexp.com:2000/InterTran">');document.write('<INPUT TYPE="hidden" NAME=type VALUE="url">');document.write('<INPUT TYPE="hidden" NAME="url" VALUE="' + cleanuplangURL() + '">');document.write('<INPUT TYPE="hidden" NAME=from VALUE="eng">');document.write('<SELECT name="to" onChange="if (checkLanguage()) submit()"><option value="" SELECTED> Translate to:<OPTION VALUE="eng"> English<OPTION VALUE="pob"> Brazilian Portuguese<OPTION VALUE="ger"> German<OPTION VALUE="dut"> Dutch<OPTION VALUE="spl"> Latin American Spanish<OPTION VALUE="spa"> Spanish<OPTION VALUE="spe"> European Spanish<OPTION VALUE="fre"> French<OPTION VALUE="jpn"> Japanese (Shift JIS)<OPTION VALUE="dan"> Danish<OPTION VALUE="ice"> Icelandic<OPTION VALUE="fin"> Finnish<OPTION VALUE="ita"> Italian<OPTION VALUE="nor"> Norwegian<OPTION VALUE="swe"> Swedish<OPTION VALUE="poe"> Portuguese<OPTION VALUE="rus"> Russian (CP 1251)<OPTION VALUE="cro"> Croatian (CP 1250)<OPTION VALUE="hun"> Hungarian (CP 1250)<OPTION VALUE="pol"> Polish (CP 1250)<OPTION VALUE="che"> Czech (CP 1250)<OPTION VALUE="bul"> Bulgarian (CP 1251)<OPTION VALUE="rom"> Romanian<OPTION VALUE="sel"> Serbian (Latin)<OPTION VALUE="slo"> Slovenian (CP 1250)<OPTION VALUE="grk"> Greek<OPTION VALUE="wel"> Welsh</SELECT>');document.write('</FORM>');