|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3780 ] | CR Services |
|---|---|
| Organisation name | Customer Resource Services |
| Short name or acronym | CR Services |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 20 Carter Drvie |
| Postal Code | |
| City | Guildford |
| Country | United States |
| Phone | +203 453.7325 |
| Fax | +203 453.7321 |
| archie_(on)_c-rservices.com | |
| Organisation URL | http://www.c-services.com |
| Logo | Description |
![]() |
We Provide pre-sales support, sales, Technical Support, Tier I and Tier II available, RMA processes, Order Taking, Help Desk, Beta Testing and Feedback for Software & Hardware, Monitoring, Credit Card Processing, Reporting, reservations, Scheduling, Repairs available on many products. |
| Contact | |
| Name | Director of International Outreach Archie Hunnicutt |
| Function | New Business Development |
| Department | SALES |
| archie_(on)_c-rservices.com | |
| Phone | +203 453.7325 |
| Fax | +203 453.7321 |
|
|
Last update: 2007-06-11 20:13: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" |