|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3103 ] | Jansen Venneboer |
|---|---|
| Organisation name | Jansen Venneboer Customer Dialogue |
| Short name or acronym | Jansen Venneboer |
| Organisation type | Telemarketing & Outsourcing |
| Activity type | Telemarketing & Outsourcing |
| Address | Stationsplein 114 |
| Postal Code | 2011 LN |
| City | Haarlem |
| Country | Netherlands |
| Phone | + (+31) 023 5112000 |
| Fax | + (+31) 0235534940 |
| dialogue_(on)_jansenvenneboer.nl | |
| Organisation URL | http://www.jansenvenneboer.com |
| Logo | Description |
![]() |
Our core activity is to provide customer services. We handle contact for our customers in the Netherlands. These are telephone, e-mail, post, SMS or other contact methods. We use language and speach technologies (IVR, MOR, OCR and ICR) to fulfill these service at the lowest possible costs. |
| Contact | |
| Name | Caspar Jansen Venneboer |
| Function | President |
| Department | |
| caspar_(on)_jansenvenneboer.nl | |
| Phone | + (+31) 023 5112000 |
| Fax | + (+31) 0235534940 |
|
|
Last update: 2002-11-14 13:36:46 #!/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" |