elsnet |
Organisation profile: Ron Weber and Associates, Inc. |
[ ID = 1710 ] | Ron Weber and Associates, Inc. |
---|---|
Organisation name | Ron Weber and Associates, Inc. |
Short name or acronym | Ron Weber and Associates, Inc. |
Organisation type | Company |
Activity type | Call centers |
Address | 185 Plains Road |
Postal Code | 06460 |
City | Milford, Connecticut |
Country | United States |
Phone | + +1 800 243 6079 |
Fax | + +1 203 882 8462 |
info_(on)_telethinking.com | |
Organisation URL | http://www.telethinking.com |
Logo | Description |
![]() |
Since incorporation over 20 years ago, Ron Weber and Associates, Inc. (RWA) has grown to become one of the largest and most respected telesales/teleservices agencies in the US. We operate full service call centers, providing inbound and outbound teleservices, customer care and consumer affairs support, interactive, fulfillment, e-commerce and consulting services to many Fortune 1000 companies. |
Contact | |
Name | Ms. Joan Mullen |
Function | Vice President, Industry Relations |
Department | Corporate |
joan.mullen_(on)_telethinking.com | |
Phone | + +1 800 888 9847 |
Fax | + +1 408 274 1476 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |