|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0057 ] | Incoming Calls Management Institute |
---|---|
Organisation name | Incoming Calls Management Institute |
Short name or acronym | Incoming Calls Management Institute |
Organisation type | Center |
Activity type | Call centers |
Address | 130 Holiday Court, Suite 108 |
Postal Code | 21401 |
City | Annapolis |
Country | United States |
Phone | + 800-672-6177 / 410-267-0700 |
Fax | + 410-267-0962 |
icmi_(on)_incoming.com | |
Organisation URL | http://www.incoming.com |
Logo | Description |
![]() |
Incoming Calls Management Institute (ICMI), offers the most comprehensive training programs and educational resources available for call center management professionals. ICMIs focus is helping individuals and organizations understand the dynamics of call center management in order to improve operational performance and achieve business results. ICMI provides high-caliber education and consulting to large and small organizations throughout the world. ICMI also produces the influential newsletter Call Center Management Review and the popular how-to book for call center managers, Call Center Management On Fast Forward. |
Contact | |
Name | Linda Harden |
Function | Chief Operating Officer |
Department | |
lindah_(on)_incoming.com | |
Phone | + 410-267-0700 |
Fax | + 410-267-0962 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |