|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3488 ] | BBI |
---|---|
Organisation name | Business Behavior Institute |
Short name or acronym | BBI |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 6700 George Rd. - Ste 200 |
Postal Code | 64133 |
City | Kansas City |
Country | United States |
Phone | + +1 816-356-6787 |
Fax | + +1 816-358-8993 |
info_(on)_bizbehavior.biz | |
Organisation URL | http://www.bizbehavior.biz |
Logo | Description |
![]() |
The Business Behavior Institute LLC is a certified woman-owned business that specializes in organizational consulting and training. We are experts in human and organization performance. We: - cover organizational needs from customer service to OSHA, management training and staff development to process improvement - have over 15 consultants with at least 20 years of expertise each, many of whom are award-wining trainers in addition to being subject-matter experts - have a training group that provides instructional design and development, training delivery, and follow-up for those at all organizational levels (from senior executives to hourly employees) - select our consultants specifically for their expertise, professionalism, background, ethics, listening skills, and ability to deal/speak with and to client groups - carefully match our consultants and trainers to the project and client. And above all, we take great pride in the quality of our work. As a smaller, highly adaptable company, BBi is able to deliver the top quality work and personalized service so often missing in todays business environment. |
Contact | |
Name | Martie Kernodle |
Function | |
Department | |
martie_(on)_bizbehavior.biz | |
Phone | + +1 816-356-6787 |
Fax | + +1 816-358-8993 |
![]() |
Last update: 2005-02-03 13:57:42 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |