function navData()
 {
     global $gbAdmin, $gbVolLogin;
     if ($gbVolLogin) {
         return strTrimAllLines($this->navDataVolunteer());
     } else {
         return strTrimAllLines($this->navDataStandard());
     }
 }
function echoT($strOut)
{
    //---------------------------------------------------------------
    // trim each line of output while preserving line breaks
    //---------------------------------------------------------------
    //   $strOutArray = explode("\n", $strOut);
    //   $strOut = '';
    //   foreach ($strOutArray as $strLine){
    //      echo(trim($strLine)."\n");
    //   }
    echo strTrimAllLines($strOut);
}
 function navData()
 {
     return strTrimAllLines($this->navDataHospiceVolunteer());
 }