|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3509 ] | AS |
|---|---|
| Organisation name | Answering Solutions |
| Short name or acronym | AS |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Lang+Speech Technology |
| Address | 102 N. Krohn Place |
| Postal Code | 57103 |
| City | Sioux Falls |
| Country | United States |
| Phone | + 18665128231 |
| Fax | + 16053675958 |
| ekaika_(on)_c-s-d.org | |
| Organisation URL | http://www.Answering-Solutions.com |
| Logo | Description |
![]() |
Answering Solutions is a sophisticated service that allows a single phone number to have multiple purposes. Our operators are available 24 hours a day, 365 days a year to provide simultaneous call-handling capabilities. We offer you a variety of forwarding options - including telephone, pager, e-mail and TTY - which you can customize to meet your business's unique needs. All of this translates to more efficient use of your time and resources. |
| Contact | |
| Name | Marketing Mgr Eric Kaika |
| Function | |
| Department | |
| EKaika_(on)_c-s-d.org | |
| Phone | + 16053675760 |
| Fax | + 16053675958 |
|
|
Last update: 2005-03-28 21:13:15 #!/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" |