|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4705 ] | DTZ |
|---|---|
| Organisation name | DTZ Operations Pte Ltd |
| Short name or acronym | DTZ |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | Blk 750 A, Technopark @ Chai Chee |
| Postal Code | 469001 |
| City | Singapore |
| Country | Singapore |
| Phone | +65 68766308 |
| Fax | + |
| roopa.c_(on)_dtz.com | |
| Organisation URL | http://www.dtz.com |
| Logo | Description |
![]() |
With DTZ Contact Centre, you get a partner who not only understands and adapts to your business culture, you also have the expertise and experience in strategic business process outsourcing.Headquartered & established in Singapore since 1996, DTZ Contact Centre handles over 150, 000 transactions monthly, round the clock, and houses a multinational team comprising of skilled, experienced and natively multilingual,agents fluent in English, Mandarin, Cantonese, Malay, Tamil, Tagalog, Indonesian, Japanese, Korea and Arabic |
| Contact | |
| Name | Ms Roopa Chainani |
| Function | Account Manager |
| Department | Contact Centre |
| roopa.c_(on)_dtz.com | |
| Phone | +65 68766308 |
| Fax | + |
|
|
Last update: 2014-12-02 07:29:28 #!/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" |