elsnet |
Organisation profile: The Taylor Reach Group, Inc. |
[ ID = 4098 ] | TRG |
---|---|
Organisation name | The Taylor Reach Group, Inc. |
Short name or acronym | TRG |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 19 Mercer St, Suite 302 |
Postal Code | M5V 1H2 |
City | Toronto |
Country | Canada |
Phone | + 416-979-8692 |
Fax | + |
ctaylor_(on)_thetaylorreachgroup.com | |
Organisation URL | http://www.thetaylorreachgroup.com |
Logo | Description |
The Taylor Reach Group has helped hundreds of call center and contact center clients achieve - and exceed - their business goals. And now stand ready to help you achieve yours! We specialize in call centers, contact centers, customer services operations, customer relations management, outsourcing and offshoring, customer satisfaction, quality systems, process improvement, technology and telephony acquisition - both domestic and international. These are the areas in which we have helped clients achieve remarkable success through our expertise and innovative thinking. With more than 14,000 contact center agent positions globally employing TRG designed contact center operational models we have the knowledge and experience to help you. | |
Contact | |
Name | CEO Colin Taylor |
Function | Executive Management |
Department | |
ctaylor_(on)_thetaylorreachgroup.com | |
Phone | + 416-979-8692 |
Fax | + |
Update this profile | Last update: 2009-06-05 19:21:01 #!/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" |