1 (' . substr(ORG_TOLL_FREE_PHONE, 0, 3) . ') ' . substr(ORG_TOLL_FREE_PHONE, 3, 3) . '-' . substr(ORG_TOLL_FREE_PHONE, 6).''; } function echoLocalPhone(){ echo '1 (' . substr(ORG_LOCAL_PHONE, 0, 3) . ') ' . substr(ORG_LOCAL_PHONE, 3, 3) . '-' . substr(ORG_LOCAL_PHONE, 6).''; } function echoFaxPhone(){ echo '1 (' . substr(ORG_FAX_PHONE, 0, 3) . ') ' . substr(ORG_FAX_PHONE, 3, 3) . '-' . substr(ORG_FAX_PHONE, 6).''; } function echoMainEmailAddress(){ echo ''. htmlentities(ORG_MAIN_EMAIL_ADDRESS, ENT_QUOTES).''; } function echoMailAddress(){ ob_start(); echo ''; echo htmlentities(ORG_MAIL_ADDRESS1, ENT_QUOTES); if (ORG_MAIL_ADDRESS2 != '') echo '
' . htmlentities(ORG_MAIL_ADDRESS2, ENT_QUOTES); echo '
' . htmlentities(ORG_MAIL_CITY, ENT_QUOTES) . ', ' . htmlentities(ORG_MAIL_PROVINCE, ENT_QUOTES) . '
' . substr(ORG_MAIL_POSTAL_CODE, 0, 3) . ' ' . substr(ORG_MAIL_POSTAL_CODE, 3); echo '
'; $msg=ob_get_clean(); echo $msg; } function echoOrgName(){ ob_start(); echo ''; echo htmlentities(ORG_ORGANIZATION_NAME, ENT_QUOTES); echo ''; $msg=ob_get_clean(); echo $msg; } } ?>