Organisation profile: The Resource Group Phlippines, Inc.
[ ID = 3644 ] | TRG Philippines, Inc. |
Organisation name | The Resource Group Phlippines, Inc. |
Short name or acronym | TRG Philippines, Inc. |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 8/F Hanston Bldg., Emerald Avenue, Ortigas Center, Pasig City, Philippines |
Postal Code | 1605 |
City | Pasig City |
Country | Philippines |
Phone | + 1-877-5460469 |
Fax | + |
Email | sales_(on)_trg.com.ph |
Organisation URL | http://www.trg.com.ph/ |
Logo | Description |
 |
TRG is a global leader in the Customer Relations Management (CRM) and Business
Process Outsourcing (BPO) sector, with over $170 million in revenues and
offices across the United States, Canada, Europe, and Asia.
What sets TRG apart from the competition? TRG has designed and implemented
hundreds of successful customer care and CRM solutions. Our Customer
Relationship Associates have the know-how and training to treat your customers
with the courtesy, respect and responsiveness they demand.
|
| Contact |
Name | Mrs. Hasmin Bautista |
Function | Sales Manager |
Department | Sales |
Email | hasmin.bautista_(on)_trg.com.ph |
Phone | +63 2.6375044 |
Fax | +63 2.6370810 |
Update this profile
|
Last update: 2006-03-02 07:45:36
#!/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"
|
|