|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1702 ] | Concentric Enterprises, Inc. |
|---|---|
| Organisation name | Concentric Enterprises, Inc. |
| Short name or acronym | Concentric Enterprises, Inc. |
| Organisation type | Company |
| Activity type | Call centers Speech technology |
| Address | 777 South State Road 7 |
| Postal Code | 33068 |
| City | Margate, FL |
| Country | United States |
| Phone | + +1 954 969 2441 |
| Fax | + + 954) 969 2400 |
| info_(on)_concentricenterprises.com | |
| Organisation URL | http://www.concentricenterprises.com |
| Logo | Description |
![]() |
Founded in 1998, Fort Lauderdale based Concentric Enterprises is a provider of consulting services and technology products to the contact center industry. Whether youre starting up a new call center or are seeking to enhance the performance of your existing call center, our industry experts can provide you with the guidance you need. Concentric is a certified reseller of CELLIT CCPRO, Knowlagent, and Eforce. Our call center management team has a collective 40 years of experience in the areas of technology and customer service. Before you take another step, visit us at www.concentricenterprises.com or call us at 888.254.8472. We can help. |
| Contact | |
| Name | Mrs. Natalie Perez |
| Function | President |
| Department | Executive |
| nperez_(on)_concentricenterprises.com | |
| Phone | + +1 888 254 8472 |
| Fax | + +1 954 597 7102 |
|
|
Last update: 2002-04-10 12:32:58 #!/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" |