| Organisation profile: THRIT
 
| [ ID = 3270 ] | THRIT | 
|---|
 | Organisation name | THRIT |  | Short name or acronym | THRIT |  | Organisation type | Company |  | Activity type | Call centers E-commerce speech technology |  | Address | PO Box 3150 |  | Postal Code | 3760DD |  | City | Soest |  | Country | Netherlands |  | Phone | + +31 35 6024068 |  | Fax | + +31 35 6024058 |  | Email | info_(on)_thrit.com |  | Organisation URL | http://www.thrit.com |  | Logo | Description | 
|---|
 |  | THRIT provides speech technology applications for use in customer contact centers and e-commerce enterprises. The THRIT solutions allow enterprises to reduce cost and enhance customer service. Using the THRIT hosting services an extremely attractive offer is available, even for small enterprises. 
 |  |  | Contact | 
|---|
 | Name | Ing Henk Nierstrasz |  | Function | Managing Consultant |  | Department |  |  | Email | henk_(on)_thrit.com |  | Phone | + +31 6 21280745 |  | Fax | + +31 35 6024058 |  |  Update this profile | Last update: 2003-12-02 15:10:04
#!/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" | 
|---|
    
 |