|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3576 ] | TeleContacting |
---|---|
Organisation name | ! TeleContacting |
Short name or acronym | TeleContacting |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 2061 McCowan Rd |
Postal Code | |
City | Scarborough |
Country | Canada |
Phone | +1 4167628388 |
Fax | +1 4167628388 |
sales_(on)_telecontacting.com | |
Organisation URL | http://www.telecontacting.com |
Logo | Description |
![]() |
We are the best choice to reach potential clients in the USA, Canada and UE at very affordable prices and high quality services. We hire billingual agents (Spanish & English) who bring maturity, extensive educational and professional backgrounds and who understand our clients' needs. Our fully integrated web-based technology, allows us to support our agents' efforts to reach their SPH, which ensures that our clients' goals are not only met but surpassed. |
Contact | |
Name | Mr Jose Contreras |
Function | Vice President |
Department | Sales |
jcontreras_(on)_telecontacting.com | |
Phone | +1 416-762-2961 |
Fax | + |
![]() |
Last update: 2005-08-31 22:41:24 #!/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" |