|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3400 ] | 24-7 INtouch |
|---|---|
| Organisation name | 24-7 INtouch |
| Short name or acronym | 24-7 INtouch |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Lang+Speech Technology |
| Address | 204B-219 Dufferin Street |
| Postal Code | M5G 2K5 |
| City | Toronto |
| Country | Canada |
| Phone | + 416-516-1710 |
| Fax | + |
| marketing_(on)_24-7intouch.com | |
| Organisation URL | http://www.24-7intouch.com |
| Logo | Description |
![]() |
24-7 INtouch is your source for outsourced call center services! With over 30 years of experience, 24-7 INtouch is an award-winning leader in call center services and live online customer support solutions. Specializing in inbound call center services, order taking, toll free support, and live web chat, 24-7 INtouch has helped a wide range of clients drive sales, reduce costs, and raise customer service levels. We understand that every contact is an opportunity to grow your business. Call 1-800-530-1121 to learn how you can capitalize on all your calls and enhance your customers experience. |
| Contact | |
| Name | Marketing Maya Kotecha |
| Function | |
| Department | |
| marketing_(on)_24-7intouch.com | |
| Phone | + 416-516-1710 |
| Fax | + |
|
|
Last update: 2004-08-17 23:14:53 #!/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" |