|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2357 ] | Brickworks |
---|---|
Organisation name | Brickworks B.V. |
Short name or acronym | Brickworks |
Organisation type | Other |
Activity type | Lang+Speech Technology provider |
Address | Industrieweg 6a |
Postal Code | 4104 AR |
City | Culemborg |
Country | Netherlands |
Phone | + +31 345 544120 |
Fax | + +31 345 544130 |
info_(on)_brickworks.nl | |
Organisation URL | http://www.brickworks.nl |
Logo | Description |
![]() |
Brickworks is a leading Dutch company, active as a System Integrator in the Call and Contact Center market. As a full-blown System Integrator we support our customers with implementing e-commerce and Customer Relation Management tools. Brickworks is a young fast moving company with lots of experience in the field of Voice Processing and CTI-integration. Brickworks has a partnership with Witness Systems, Interactive Intelligence and Invision |
Contact | |
Name | Mr W.A.M. Seuntjens |
Function | Director Sales & Consultancy |
Department | |
info_(on)_brickworks.nl | |
Phone | + |
Fax | + |
![]() |
Last update: 2004-12-27 11:08:57 #!/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" |