|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3710 ] | NomKa |
|---|---|
| Organisation name | NomKa Call Centers |
| Short name or acronym | NomKa |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | P.O. Box 1152 |
| Postal Code | 98057 |
| City | Renton |
| Country | United States |
| Phone | +1 877-526-6652 |
| Fax | +1 877-526-6652 |
| sales_(on)_nomka.com | |
| Organisation URL | http://nomka.com |
| Logo | Description |
![]() |
Offers quality inbound call center services and speech recognition. Services include: 24/7 and bilingual support, order taking, customer service, live chat, back office support (claims & collections, application processing, verification & billing), and IVR setup. Provides speech recognition services as part of call center services. |
| Contact | |
| Name | Business Development Norma Duenas |
| Function | |
| Department | Business Development |
| norma_(on)_nomka.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2006-10-04 06:48:37 #!/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" |