function TranslateNLAcronym( strAcronym ) {
	
	var strTranslation = "";
	
	if ( strAcronym.substr( 0,1 )=="T"  ) {
			strTranslation += "Tori\'s ";
	}
	if ( strAcronym.substr( 0,1 )=="U"  ) {
			strTranslation += "Uke\'s ";
	}
	
	if ( strAcronym.substr( 1,1 )=="L"  ) {
			strTranslation += "Linker ";
	}
	if ( strAcronym.substr( 1,1 )=="R"  ) {
			strTranslation += "Rechter ";
	}
	
	if ( strAcronym.substr( 2,1 )=="A"  ) {
			strTranslation += "Arm ";
	}
	if ( strAcronym.substr( 2,1 )=="B"  ) {
			strTranslation += "Been ";
	}
	if ( strAcronym.substr( 2,1 )=="H"  ) {
			strTranslation += "Hand ";
	}
	if ( strAcronym.substr( 2,1 )=="P"  ) {
			strTranslation += "Pols ";
	}
	if ( strAcronym.substr( 2,1 )=="V"  ) {
			strTranslation += "Voet ";
	}
	
	
	return strTranslation;
	
}


function TranslateENAcronym( strAcronym ) {
	
	var strTranslation = "";
	
	if ( strAcronym.substr( 0,1 )=="T"  ) {
			strTranslation += "Tori\'s ";
	}
	if ( strAcronym.substr( 0,1 )=="U"  ) {
			strTranslation += "Uke\'s ";
	}
	
	if ( strAcronym.substr( 1,1 )=="L"  ) {
			strTranslation += "Left ";
	}
	if ( strAcronym.substr( 1,1 )=="R"  ) {
			strTranslation += "Right ";
	}
	
	if ( strAcronym.substr( 2,1 )=="A"  ) {
			strTranslation += "Arm ";
	}
	if ( strAcronym.substr( 2,1 )=="F"  ) {
			strTranslation += "Foot ";
	}
	if ( strAcronym.substr( 2,1 )=="H"  ) {
			strTranslation += "Hand ";
	}
	if ( strAcronym.substr( 2,1 )=="L"  ) {
			strTranslation += "Leg ";
	}
	if ( strAcronym.substr( 2,1 )=="W"  ) {
			strTranslation += "Wrist ";
	}
	
	
	return strTranslation;
	
}


