|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1368 ] | ATA |
---|---|
Organisation name | American Teleservices Association |
Short name or acronym | ATA |
Organisation type | Association, SIG, Project |
Activity type | Lang+Speech Technology research |
Address | 3815 River Crossing Parkway, Ste. 20 |
Postal Code | 46240 |
City | Indianapolis, IN |
Country | United States |
Phone | + +1 317 816 9336 |
Fax | + +1 317 218 0323 |
contact_(on)_ataconnect.org | |
Organisation URL | http://www.ataconnect.org |
Logo | Description |
![]() |
The American Teleservices Association, Inc. represents the providers and users of teleservices in the United States and around the globe. ATA's members include telemarketing service agencies, consultants, customer service trainers, providers of telephone and Internet systems, and the users of teleservices, such as advertisers, non-profit organizations, retailers, catalogers, manufacturers, financial service providers, and many others. ATA serves its members by providing business value in the form of: + Forums for networking at the national and regional levels, + Programs for business learning, + Advocacy of teleservices users' and providers' interests before the state and federal governments, + Research on consumer and regulatory topics of interest to teleservices users and providers, + Consensus voluntary guidelines for the teleservices industry, + Information about global developments in the teleservices industry, and + Education of the general public and the media to promote the business interests of teleservices providers and users and their strong commitment to customer service and satisfaction. |
Contact | |
Name | Ms. Jaime Haak |
Function | Manager |
Department | Marketing and Communications |
jaime_(on)_ataconnect.org | |
Phone | + +1 317 816 9336 |
Fax | + +1 317 218 0323 |
![]() |
Last update: 2004-10-14 23:53:08 #!/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" |