Organisation profile: Alpine Access, LLC
[ ID = 1266 ] | Alpine Access, LLC |
Organisation name | Alpine Access, LLC |
Short name or acronym | Alpine Access, LLC |
Organisation type | Company |
Activity type | Call centers |
Address | 1536 Cole Boulevard Suite 350 |
Postal Code | 80401 |
City | Golden, CO |
Country | United States |
Phone | + +1 303 279 0585 |
Fax | + +1 303 279 0584 |
Email | info_(on)_alpineaccess.com |
Organisation URL | http://www.alpineaccess.com |
Logo | Description |
 |
Alpine Access, Inc. is the nations leading outsourcer of call center
services using home based customer service agents working over the Internet.
Our solution has generated the industrys highest revenue per agent and
conversion rates. Alpine Access has been named by the Denver Business Journal
as one of Colorados fastest growing private companies for two consecutive
years.
|
| Contact |
Name | Director of Marketing and Public Relations David Parkhurst |
Function | |
Department | |
Email | dparkhurst_(on)_alpineaccess.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2003-06-16 22:26:37
#!/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"
|
|