|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3671 ] | HTMT |
---|---|
Organisation name | HTMT Canada |
Short name or acronym | HTMT |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 777, Bay st: |
Postal Code | M5G 2C8 |
City | Toronto |
Country | Canada |
Phone | +1 6472581000 |
Fax | + |
connect_(on)_htmt.soft.net | |
Organisation URL | http://www.source1htmt.com |
Logo | Description |
![]() |
Selected as one of the 200 Best Under A Billion Companies by Forbes Asia Magazine (Oct 05) Ranked 8th among the Top 10 Call Center Worldwide by the Global Services Magazine in association with NeoIT in Jan 06 Philippines center awarded Seal of Product Quality in Oct 05 Rated Among the Top 5 BPO companies as per Employee satisfaction Survey - Dataquest IDC 2005 Ranked 13th among 400 BPO providers in INDIA (NASSCOM) 04 -05 Ranked Largest Health Care BPO service provider in INDIA (Voice & Data July 04) Adjudged Best BPO entry for the Intelligent Enterprise Awards (Process Improvement and Automation Tool) at the Technology Senate 05 - Bangkok |
Contact | |
Name | Vice President & Head of Operations Subhankar Ghosh |
Function | |
Department | |
sghosh_(on)_source1htmt.com | |
Phone | +1 4162581372 |
Fax | +1 4162581010 |
![]() |
Last update: 2006-05-19 23:15:49 #!/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" |