function changeLanguage(languageSelection)
{
	// Declaration of variables.
	var w = document.languageSelector.languageSelection.selectedIndex;
	var selected_text = document.languageSelector.languageSelection.options[w].value;
	urlTokens = (window.location + '').split('/');

	// The following delivers the user to the page they are currently viewing in the language they have selected.  
	// The length of the urlTokens array determines how the users are routed:
	// 4 - Home page
	// 5 - Main page within a section
	// 6 - Specific page within a section
	// 
	// Note: it is EXTREMELY important that the folder structure established up to this point remain.  Changing it will render the below unusable. 
	if (selected_text=='ENG')
	{
		if (urlTokens.length==4)
		{
			window.location="/index.shtml";
		}
		else if (urlTokens.length==5)
		{
			window.location="http://" + urlTokens[2] + "/" + urlTokens[3] + "/index.shtml";
		}
		else if (urlTokens.length==6)
		{
			window.location="http://" + urlTokens[2] + "/" + urlTokens[3] + "/eng/" + urlTokens[5];
		}
	}
	else if (selected_text=='FRE')
	{
		if (urlTokens.length==4)
		{
			window.location="/indexfr.shtml";
		}
		else if (urlTokens.length==5)
		{
			window.location="http://" + urlTokens[2] + "/" + urlTokens[3] + "/fr.shtml";
		}
		else if (urlTokens.length==6)
		{
			window.location="http://" + urlTokens[2] + "/" + urlTokens[3] + "/fre/" + urlTokens[5];
		}
	}
	else if (selected_text=='ZHO')
	{
		if (urlTokens.length==4)
		{
			window.location="/indexzh.shtml";
		}
		else if (urlTokens.length==5)
		{
			window.location="http://" + urlTokens[2] + "/" + urlTokens[3] + "/zh.shtml";
		}
		else if (urlTokens.length==6)
		{
			window.location="http://" + urlTokens[2] + "/" + urlTokens[3] + "/zho/" + urlTokens[5];
		}
	}
}

