elsnet |
Organisation profile: IVRS (International) Ltd. / Interactive Technology Ltd. |
[ ID = 0231 ] | IVRS (International) Ltd. / Interactive Technology Ltd. |
---|---|
Organisation name | IVRS (International) Ltd. / Interactive Technology Ltd. |
Short name or acronym | IVRS (International) Ltd. / Interactive Technology Ltd. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 6/F Phase 2 Ming An Plaza, 8 Sunning Road |
Postal Code | |
City | Causeway Bay |
Country | Hong Kong |
Phone | + +852 2893 3776 |
Fax | + +852 2891 1777 |
sales_(on)_ivrs.com | |
Organisation URL | http://www.ivrs.com |
Logo | Description |
![]() |
InterVoice offers interactive voice response systems and computer telephony integration solutions in a broad cross-section of industry sectors. The InterVoice system connected into telephone lines (either analog lines or digital T1/E1trunks) can handle either incoming or outgoing calls and then perform various voice processing: DTMF or pulse tone input, provides unlimited pre-recorded voice messages, live recording of customer messages, offers text-to-speech (TTS) for rapidly changing data. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
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" |