<!-- // Hide from old browsers
function js_standard_object()
{
   /***********************************************************
   // This function is used as an object that wraps variables.  
   // The main purpose of using an object in this case is to 
   // pass an object by reference so that mulitple values
   // can be used by the calling function.
   ************************************************************/
   this.jv_str;
   this.jv_missing;
   this.jv_miss_str;
   this.jv_num_str;
   this.jv_ret_code;
   return this;
}
// End hide -->