function HandleTranslationSelection()
{
	var theTranslationIndex = document.getElementById( 'selectTranslation' ).selectedIndex;
	
	if ( theTranslationIndex == 0 )
	{
		window.location = 'oureyes_Chinese.html';
	}
	else if ( theTranslationIndex == 1 )
	{
		window.location = 'oureyes_English.html';
	}
	else if ( theTranslationIndex == 2 )
	{
		window.location = 'oureyes_Spanish.html';
	}
	else if ( theTranslationIndex == 3 )
	{
		window.location = 'oureyes_French.html';
	}
	else if ( theTranslationIndex == 4 )
	{
		window.location = 'oureyes_Creole.html';
	}
	else if ( theTranslationIndex == 5 )
	{
		window.location = 'oureyes_Portuguese.html';
	}
	else if ( theTranslationIndex == 6 )
	{
		window.location = 'oureyes_Swahili.html';
	}
}
