|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3712 ] | TRG |
---|---|
Organisation name | TRG Customer Solutions |
Short name or acronym | TRG |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 2701 Renaissance Blvd, Suite 300 |
Postal Code | 19380 |
City | King of Prussia, PA |
Country | United States |
Phone | + 610-213-9792 |
Fax | + |
scott.karlin_(on)_trgcustomersolutions.com | |
Organisation URL | http://www.trgcustomersolutions.com |
Logo | Description |
TRG Customer Solutions operates 27 global contact centers in the US, Canada, UK, Philippines, Pakistan & Senegal offering live agent and IVR (Interactive Voice Response) services including advanced speech recognition. TRG offers over 20 languages including French, Spanish, Mandarin and Cantonese. Capabilities include telesales, customer service, customer care, direct-response marketing support, satisfaction measurement and customized applications. TRG provides both voice and non-voice support. | |
Contact | |
Name | Vice President Sales Scott Karlin |
Function | Sales |
Department | International Sales |
Scott.Karlin_(on)_trgcustomersolutions.com | |
Phone | + 610-213-9792 |
Fax | + |
Update this profile | Last update: 2006-10-15 21:59:45 #!/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" |