|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3427 ] | CanTalk |
|---|---|
| Organisation name | CanTalk (Canada) Inc. |
| Short name or acronym | CanTalk |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Lang+Speech Technology |
| Address | Suite 400 136 Market Avenue |
| Postal Code | R3B 0P4 |
| City | Winnipeg |
| Country | Canada |
| Phone | + +01 204 786 0114 |
| Fax | + +01 204 982 1244 |
| lchester_(on)_cantalk.com | |
| Organisation URL | http://www.cantalk.com |
| Logo | Description |
![]() |
CanTalk (Canada) Inc., a global service company, provides innovative solutions for communication challenges in any language, anywhere on the planet, twenty-four hours a day, seven days a week. CanTalks network of specialized interpreters, operators and technicians offer industry-leading services. Our engineers create customized communication solutions for your special needs. We answer your call in seconds and deliver service in a minute in over 110 languages. Language services include instant over the phone interpretation, document translation and fax translation /forwarding all with multi-language operator services. |
| Contact | |
| Name | Executive Vice President Lawrence Chester |
| Function | Services and Products |
| Department | Executive |
| lchester_(on)_cantalk.com | |
| Phone | + +01 204 786 0114 |
| Fax | + +01 204 986 1244 |
|
|
Last update: 2004-10-07 17:24:25 #!/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" |