|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1224 ] | Tascom Evolution |
---|---|
Organisation name | Alston Tascom, Inc. |
Short name or acronym | Tascom Evolution |
Organisation type | Company, Call Center Solution Provider |
Activity type | Call centers |
Address | 13512 Vintage Place |
Postal Code | 91710 |
City | Chino, CA |
Country | United States |
Phone | + 909 548 7300 |
Fax | + 909 517 3670 |
info_(on)_alstontascom.com | |
Organisation URL | http://www.alstontascom.com |
Logo | Description |
A call center industry system developer, Alston Tascoms roots trace to the early 1950s. Tascom Evolution is a complete Call Center solution powered by a unified IVR, ACD, Voice Mail and Logging system, integrated with a robust SQL database, blended inbound and outbound calling and progressive dialer capabilities. Tascom offers an end-to-end and front-end only call center solution, from caller to agent screen pop and beyond, including fax, pager, e-mail, export and wireless web delivery. Tascoms web software empowers system access by clients and remote agents. Tascom also offers hosted Interactive Voice Response services and Web-Based Appointment Scheduling services. | |
Contact | |
Name | Marketing Manager Bill Cortus |
Function | Sales support and marketing communications |
Department | Marketing |
info_(on)_alstontascom.com | |
Phone | + 909 548 7311 |
Fax | + 909 517 3670 |
Update this profile | Last update: 2002-04-15 19:01:03 #!/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" |