Organisation profile: Chatter Box Call Center
[ ID = 4382 ] | CBCC |
Organisation name | Chatter Box Call Center |
Short name or acronym | CBCC |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Unit 1, 14/F, Leader Industrial Centre,Nos. 57-59 Au Pui Wan Street, Shatin, N.T. |
Postal Code | |
City | New Territories |
Country | Hong Kong |
Phone | +852 81700133 |
Fax | + |
Email | dd_(on)_chatterboxcallcenter.com |
Organisation URL | http://www.chatterboxcallcenter.com |
Logo | Description |
 |
Chatterboxs State Of The Art Boutique Contact Call Center is
a privately owned company based in Tokyo, Japan with its central call center
operation domiciled in Manila, Philippines. Leveraging the benefits of its
location, Chatterbox founders have twenty-three years experience and
outstanding performance in providing flexible contact call center solutions to
a wide variety of clientele and market sectors around the globe.
|
| Contact |
Name | |
Function | |
Department | |
Email | dd_(on)_chatterboxcallcenter.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2011-03-02 06:21:17
#!/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"
|
|