|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3717 ] | Intelemedia |
|---|---|
| Organisation name | Intelemedia Communications, Inc. |
| Short name or acronym | Intelemedia |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | 1255 West 15th Street - Suite 700 |
| Postal Code | 75075 |
| City | Plano, Texas |
| Country | United States |
| Phone | +1 972-994-0700 |
| Fax | +1 972-889-5300 |
| sales_(on)_intelemedia.com | |
| Organisation URL | http://www.intelemedia.com |
| Logo | Description |
![]() |
Intelemedia provides telephony technology to call centers and corporate users of call center services. These include ACD, PBX, speech/IVR, CTI, call monitoring/recording, agent scripting, web and queue callback, etc., available as managed hosted or customer-premise services. Intelemedia was founded in 1993 and is based in Dallas, Texas, USA, with customers throughout North and South America. |
| Contact | |
| Name | CEO Eric Lenington |
| Function | Corporate Management |
| Department | n/a |
| eric_(on)_intelemedia.com | |
| Phone | +1 972-994-0700 |
| Fax | +1 972-889-5317 |
|
|
Last update: 2006-11-04 18:39:51 #!/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" |