|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1627 ] | Answer Plus |
---|---|
Organisation name | Answer Plus |
Short name or acronym | Answer Plus |
Organisation type | Company |
Activity type | Call centers |
Address | 8421 University, Suite M |
Postal Code | Iowa 50325 |
City | Des Moines |
Country | United States |
Phone | + 800 803 4304 (US only) |
Fax | + +1 515 226 1551 |
ansplus_(on)_ansplus.com | |
Organisation URL | http://www.ansplus.com |
Logo | Description |
![]() |
Answer Plus, Inc. Midwestern Inbound Call Centers, providing customized Telephone Answering Service, 24 hours a day, seven days a week. We offer the following services: 800# or Local Access, Order Entry, Surveys, Dealer Locate and Event Registration. We've built our reputation on helping our customers keep in touch with their customers. Unlike other phone answering services that come and go, Answer Plus has been a proven full-service communications company since 1965, featuring locations throughout the Midwest. Answer Plus employees receive extensive training in accurate message taking, dealing with clients in a friendly, professional manner. We strive to project a friendly Midwestern attitude, using the most up to date technology. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
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" |