[ ID = 1942 ] | Arcobel |
Organisation name | Arcobel Embedded Solutions |
Short name or acronym | Arcobel |
Organisation type | 1 Private company |
Activity type | Call centersSpeech technology |
Address | Hambakenwetering 1 |
Postal Code | 5231DD |
City | 's-Hertogenbosch |
Country | Netherlands |
Phone | + 0736460101 |
Fax | + 0736460115 |
Email | sales_(on)_arcobel.nl |
Organisation URL | http://www.arcobel.nl/aes |
Logo | Description |
 |
Arcobel delivers hardware platforms as well as software
tools (application generator software) for CTI applications.
|
| Contact |
Name | Mr. Allard van Veelen |
Function | Technisch commercieel adviseur |
Department | Marketing & Sales |
Email | allard.van.veelen_(on)_arcobel.nl |
Phone | + 0736460101 |
Fax | + 0736460115 |
Update this profile
|
Last update: 2004-04-05 13:50:10
#!/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"
|