|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1695 ] | Jingle Phone Productions |
|---|---|
| Organisation name | Jingle Phone Productions |
| Short name or acronym | Jingle Phone Productions |
| Organisation type | Company |
| Activity type | Call centers Speech technology |
| Address | 2100 Clearwater Drive |
| Postal Code | 60523 |
| City | Oak Brook, IL |
| Country | United States |
| Phone | + 630-574-8008 |
| Fax | + 630-575-8118 |
| info_(on)_jinglephone.com | |
| Organisation URL | http://www.jinglephone.com |
| Logo | Description |
![]() |
JPP is the premier provider of professionally recorded prompts, call progress announcements and messages for IVR, ACD and audiotex--on all platforms with expertise in speech recognition. Featuring rapid turnaround and electronic delivery. A vast array of experienced voice talent is capable in over 20 languages with translation services. JPP designs, scripts and produces call routing announcements and on-hold messages for callers in queue and in self-serve applications. Our voice talent and engineers deliver consistency and quality over time and among distributed call centers. Call 800-4-JINGLE. www.jinglephone.com. Voice Talent Demo Line: 630-575-9696. |
| Contact | |
| Name | Mr. Larry Greenberg |
| Function | Vice President |
| Department | Marketing |
| lgreenberg_(on)_jinglephone.com | |
| Phone | + 630-574-8008 |
| Fax | + 630-574-8118 |
|
|
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" |