//**********************************************************
// MESSAGES for fitness pages
// These are all of the possible messages that may be displayed
// to the user.
// INCLUDES: 
// This file is used by display.js so this files must be
// includes before display.js
//**********************************************************

// messages for missing fields, these should be alert boxes 
// to force the user to enter the data before continuing
var MESSAGE1 = "You must enter a value for sex";
var MESSAGE2 = "You must enter a value for hips";
var MESSAGE3 = "You must enter a value for waist";
var MESSAGE4 = "You must enter a value for iliac";
var MESSAGE5 = "You must enter a value for height";
var MESSAGE6 = "You must enter a value for weight";
var MESSAGE7 = "You must enter a value for abdomen";
var MESSAGE8 = "You must enter a value for age";
var MESSAGE9 = "You must enter a value for heart rate";
var MESSAGE10 = "You must enter a value for walk time";

// out of normal range data, verify they entered the right data
// confirm boxes
var MESSAGE11 = "The value you entered for hips appears to be out of the normal range";
var MESSAGE12 = "The value you entered for waist appears to be out of the normal range";
var MESSAGE13 = "The value you entered for iliac appears to be out of the normal range";
var MESSAGE14 = "The value you entered for height appears to be out of the normal range";
var MESSAGE15 = "The value you entered for weight appears to be out of the normal range";
var MESSAGE16 = "The value you entered for abdomen appears to be out of the normal range";
var MESSAGE17 = "The value you entered for age appears to be out of the normal range";
var MESSAGE18 = "The value you entered for heart rate appears to be out of the normal range";
var MESSAGE19 = "The value you entered for walk time appears to be out of the normal range";

// if the user changes some of the units, but not all, warn them
var MESSAGE20 = "You have selected some metric units and some US units.";

// this may be used for any confirm message, this message begins
// on a new line to make it easier to read
var MESSAGE21 = "\n\nAre you sure? (Press OK to continue, CANCEL to change)";

// a non-numeric value was entered
var MESSAGE22 = "A non-numeric value was entered for hips";
var MESSAGE23 = "A non-numeric value was entered for waist";
var MESSAGE24 = "A non-numeric value was entered for iliac";
var MESSAGE25 = "A non-numeric value was entered for height";
var MESSAGE26 = "A non-numeric value was entered for weight";
var MESSAGE27 = "A non-numeric value was entered for abdomen";
var MESSAGE28 = "A non-numeric value was entered for age";
var MESSAGE29 = "A non-numeric value was entered for heart rate";
var MESSAGE30 = "A non-numeric value was entered for walk time";



