|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3411 ] | ACT |
---|---|
Organisation name | Advanced Call Center Technologies, LLC |
Short name or acronym | ACT |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 1235 Westlakes Drive, Ste 160 |
Postal Code | 19312 |
City | Berwyn |
Country | United States |
Phone | + 610-695-0500 |
Fax | + 610-640-4981 |
HCroft_(on)_ACTToday.com | |
Organisation URL | http://www.ACTToday.com |
Logo | Description |
![]() |
Advanced Call Center Technologies (ACT) is a specialized provider of inbound and outbound outsourced customer contact solutions. ACT is the solution of choice for many industry leaders in performing: * VRU Development and Implementation * Early Out Collections * Fraud Detection and Prevention * Credit Card Activation * Skip to Collect * VRU programs * Cross Selling Programs * Missing Information/Application Fulfillment programs Why choose ACT? ACT delivers consistent, superior performance to your company via an experienced, innovative and involved management team augmented with progressive technology. For more information on how ACT can achieve your objectives, please contact us at: (800) 745-5231 or online WWW.Acttoday.com. |
Contact | |
Name | Senior Vice President Hunter Croft |
Function | Product Development & Risk Management |
Department | Sales |
HCROFT_(on)_ACTToday.com | |
Phone | + 610-695-0500 x211 |
Fax | + 610-640-4981 |
![]() |
Last update: 2004-09-07 21:42:31 #!/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" |