|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1736 ] | Crealog | 
|---|---|
| Organisation name | CreaLog GmbH | 
| Short name or acronym | Crealog | 
| Organisation type | Company | 
| Activity type | Speech technology/ Voice Portal/ IVR | 
| Address | Frankfurter Ring 211 | 
| Postal Code | 80807 | 
| City | Munich | 
| Country | Germany | 
| Phone | + +49 (0) 89/324 656-0 | 
| Fax | + +49 (0) 89/324656-99 | 
| info_(on)_crealog.com | |
| Organisation URL | http://www.crealog.com | 
| Logo | Description | 
![]()  | 
Voice Portals and IVR solutions for natural language dialogs. Solutions: voice enabled auto-attendants, intelligent waiting queues, pre-qualification and call-back management, help desk and expert tool integration, (fault)-announcement, mass-call-platforms, automated ordering systems. Competences: More than 250 customers from all branches in 12 countries, 17.000 installed lines, serving the market for more than 10 years.  | 
| Contact | |
| Name | Mr. Martin Vennik | 
| Function | Sales Manager | 
| Department | Sales | 
| info_(on)_crealog.com | |
| Phone | + +49 (0)69/ 900 288-11 | 
| Fax | + +49 (0)69/ 900 288-29 | 
| 
 
 | 
Last update: 2004-01-05 14:34:36 #!/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" |