//**********************************************************
// GLOBAL variables used for the fitness pages.
// These variables hold the values of the user entered 
// data on the screen.  These are just the variables, 
// not the functions required to get the values from 
// the screen (see accessors.js).  Once data has been
// stored in these variables, their value can be seen
// from any javascript (.js) files (in the same directory,
// unless a different directory has been specified in the
// include statement), they are global.
// INCLUDES:  
// This files uses the constants.js file so it must
// be included before this file.
//**********************************************************

// testing rountine to be removed after installation
function testGlob ()
{
//#top testGlob

   confirm ("testing globals.js");

}  //#end testGlob

/**
 * Units of measure for data entered on the screen,
 * metric or us, the default is US.  This is not
 * how the data is necessarily stored.
 */
var units = US;
/**
 * The sex of the user
 */
var sex;

/**
 * The users abdomen measurement, 
 * the default is 0 indicating nothing has been entered.
 */
var abdomen = 0;
/**
 * The users hip measurement,
 * the default is 0 indicating nothing has been entered.
 */
var hips = 0;
/**
 * The users waist measurement,
 * the default is 0 indicating nothing has been entered.
 */
var waist = 0;
/**
 * the users iliac measurement,
 * the default is 0 indicating nothing has been entered.
 */
var iliac = 0;
/**
 * the users height measurement,
 * the default is 0 indicating nothing has been entered.
 */
var height = 0;
/**
 * the users weight,
 * the default is 0 indicating nothing has been entered.
 */
var weight = 0;
/**
 * the users age,
 * the default is 0 indicating nothing has been entered.
 */
var age = 0;
/**
 * the users heart rate after exercising,
 * the default is 0 indicating nothing has been entered.
 */
var exHeartRate = 0;
/**
 * the time for the user to walk one mile,
 * the default is 0 indicating nothing has been entered.
 */
var walkTime = 0;
