|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1205 ] | AVST | 
|---|---|
| Organisation name | Applied Voice & Speech Technologies, Inc. | 
| Short name or acronym | AVST | 
| Organisation type | Private company | 
| Activity type | Language or Speech Technology integrator | 
| Address | 27042 Towne Centre Drive, Suite 200 | 
| Postal Code | 92610 | 
| City | Foothill Ranch, California | 
| Country | United States | 
| Phone | +1 949-699-2300 | 
| Fax | +1 949-699-2301 | 
| info_(on)_avst.com | |
| Organisation URL | http://www.avst.com | 
| Logo | Description | 
![]()  | 
CallXpress Speech Server, powered by Seneca®, offers speech-enabled connectivity tools to CallXpress, making AVSTs unified communications solutions complete. Using sophisticated voice recognition technology, Seneca provides speech access to your companys communication infrastructure and real-time call connectivity. It also offers hands-free mobile management of telephone calls, e-mail and fax messages, maximizing employee productivity.  | 
| Contact | |
| Name | Mr. Denny Michael | 
| Function | Vice President Marketing | 
| Department | |
| dmichael_(on)_avst.com | |
| Phone | +1 949-699-2300 | 
| Fax | +1 949-699-2301 | 
| 
 
 | 
Last update: 2006-09-05 17:48:59 #!/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" |