VVcountryCounter = 67; _root.VVnameText = [_root.VVnameArray[VVcountryCounter]]; _root.VVpopulationText = numberToString(_root.VVpopulation[VVcountryCounter]); Math.round(_root.VVemissionRate[VVcountryCounter] / 1000 * 10) / 10; if (_root.VVemissionRate[VVcountryCounter] / 1000 < 60) { _root.VVemissionsText = [Math.round(_root.VVemissionRate[VVcountryCounter] / 1000 * 10) / 10 + " seconds"]; } else if (_root.VVemissionRate[VVcountryCounter] / 1000 < 3600) { _root.VVemissionsText = [Math.round(_root.VVemissionRate[VVcountryCounter] / 60000 * 10) / 10 + " minutes"]; } else { _root.VVemissionsText = [Math.round(_root.VVemissionRate[VVcountryCounter] / 3600000 * 10) / 10 + " hours"]; } // end else if if (_root.VVdeathRate[VVcountryCounter] / 1000 < 60) { _root.VVdeathText = [Math.round(_root.VVdeathRate[VVcountryCounter] / 1000 * 10) / 10 + " seconds"]; } else if (_root.VVdeathRate[VVcountryCounter] / 1000 < 3600) { _root.VVdeathText = [Math.round(_root.VVdeathRate[VVcountryCounter] / 60000 * 10) / 10 + " minutes"]; } else { _root.VVdeathText = [Math.round(_root.VVdeathRate[VVcountryCounter] / 3600000 * 10) / 10 + " hours"]; } // end else if if (_root.VVrealBirthRate[VVcountryCounter] / 1000 < 60) { _root.VVbirthText = [Math.round(_root.VVrealBirthRate[VVcountryCounter] / 1000 * 10) / 10 + " seconds"]; } else if (_root.VVrealBirthRate[VVcountryCounter] / 1000 < 3600) { _root.VVbirthText = [Math.round(_root.VVrealBirthRate[VVcountryCounter] / 60000 * 10) / 10 + " minutes"]; } else { _root.VVbirthText = [Math.round(_root.VVrealBirthRate[VVcountryCounter] / 3600000 * 10) / 10 + " hours"]; } // end else if}