// function to see if an input value has been
// entered at all
function isEmpty(inputStr) {
   var re = /.+/;
   if (!inputStr.match(re)) {
      return true;
   }
   return false;
}
