    // isEmpty - Check to see if a value is empty
    //           Expects a value to be passed in
    function isEmpty(s)
    {
      return ((s == null) || (s.length == 0));
    }
 
 