|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3859 ] | AnexaTel |
---|---|
Organisation name | Anexa Teleservices |
Short name or acronym | AnexaTel |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 7 Lakeway Centre Court Suite 201 |
Postal Code | 78734 |
City | Lakeway |
Country | United States |
Phone | +512 263-1455 |
Fax | +512 535-2490 |
reed.majors_(on)_anexatel.com | |
Organisation URL | http://www.anexatel.com |
Logo | Description |
![]() |
For over 10 years Anexa has provided the highest quality Spanish-speaking contact center services in the industry. Anexa owns and operates a newly constructed, state-of-the-art 60,000 sq ft facility in Hermosillo Mexico. We use the best Human Resources practices to select highly educated and motivated personnel from the outstanding talent pool in Hermosillo. Anexa agents are expertly trained and supported by a modern redundant telecommunications and IT infrastructure. |
Contact | |
Name | VP Marketing Reed Majors |
Function | VP |
Department | Marketing |
reed.majors_(on)_anexatel.com | |
Phone | +512 263-1455 |
Fax | +512 535-2490 |
![]() |
Last update: 2008-05-18 02:44:39 #!/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" |