|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1991 ] | Witness Systems Ltd. (Europe) |
---|---|
Organisation name | Witness Systems Ltd. (Europe) |
Short name or acronym | Witness Systems Ltd. (Europe) |
Organisation type | Company |
Activity type | Call centers |
Address | Eastheath House, Eastheath Ave. |
Postal Code | RG41-2PR |
City | Wokingham, Berkshire |
Country | United Kingdom |
Phone | + +44 118 936 7131 |
Fax | + |
info_(on)_witness.com | |
Organisation URL | http://www.witness.com |
Logo | Description |
![]() |
Corporate Fact Sheet Corporate Profile Witness Systems, Inc. is a leading provider of business-driven multimedia recording and analysis software that enables companies to enhance their customer interactions across multiple communications media. Its common stock is traded on the NASDAQ stock market under the ticker symbol WITS. Witness Systems' software is designed to enable companies to optimise their customer relationship management initiatives. As a result, customers are able to generate additional revenue opportunities, improve profitability, enhance customer retention, and achieve greater customer intimacy. The Company's eQualityTM software is designed to enable customer contact centres within a company to record and evaluate complete customer interactions through multiple media, such as the telephone, Web chat and electronic mail. |
Contact | |
Name | Ms Helena Adams |
Function | Marketing Manager - EMEA |
Department | UK |
hadams_(on)_witness.com | |
Phone | + +44 118 936 7131 |
Fax | + +44 118 936 7101 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |