| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4489 ] | ACC | 
|---|---|
| Organisation name | Ambs Call Center | 
| Short name or acronym | ACC | 
| Organisation type | Private company | 
| Activity type | Other Call Center related expertise | 
| Address | 338 West Franklin Street | 
| Postal Code | 49201 | 
| City | Jackson, Michigan | 
| Country | United States | 
| Phone | +800 968-1186 | 
| Fax | + | 
| links_(on)_bevelwise.com | |
| Organisation URL | http://www.ambscallcenter.com | 
| Logo | Description | 
|  | Ambs Call Center provides a wide range of call center expertise and answering services, including nurse triage, call scheduling, virtual receptionist and much more across healthcare and other industries. | 
| Contact | |
| Name | Online Media Specialist David Veldt | 
| Function | Marketing | 
| Department | Marketing | 
| links_(on)_bevelwise.com | |
| Phone | + | 
| Fax | + | 
|  Update this profile | Last update: 2012-07-10 17:06:21 #!/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" |