|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3199 ] | AMCAT Call Centre Software | 
|---|---|
| Organisation name | AMCAT Call Centre Software | 
| Short name or acronym | AMCAT Call Centre Software | 
| Organisation type | Software Manufacturer and Sales | 
| Activity type | Call and Telemarketing Centers | 
| Address | 212 Piccadilly | 
| Postal Code | W1V 9LD | 
| City | London | 
| Country | United Kingdom | 
| Phone | + +44 (0) 800 169 2028 | 
| Fax | + +44 (0) 161 876 4323 | 
| sales_(on)_amcat.co.uk | |
| Organisation URL | http://www.amcat.co.uk/callcentresoftware.asp | 
| Logo | Description | 
![]()  | 
AMCAT UK offering Call Centre software since 1990. Predictive Diallers and Call Centre management software. CTI based Contact Centre / Telemarketing software including Predictive Diallers, IVR, ACD, VoIP, and web enabled multimedia solutions.  | 
| Contact | |
| Name | Director Keith Bass | 
| Function | |
| Department | |
| kbass_(on)_amcat.co.uk | |
| Phone | + 44 (0) 0161 772 7100 | 
| Fax | + 44 (0) 161 876 4323 | 
| 
 
 | 
Last update: 2003-08-27 11:53:40 #!/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" |