[ ID = 4293 ] | BOOMERANG SA |
Organisation name | Boomerang Marketing SA |
Short name or acronym | BOOMERANG SA |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | P O Box 23567 Claremont |
Postal Code | 7735 |
City | Cape Town |
Country | South Africa |
Phone | +27 0216738100 |
Fax | +27 08801216747732 |
Email | |
Organisation URL | http://www.boomerangmarketing.co.za |
Logo | Description |
 |
BOOMERANG MARKETING SA is a specialist outbound call centre particularly effective in sales campaigns. We are an authorized financial services provider and have expertise in developing and maintaing customer loyalty and customer retention programmes.
|
| Contact |
Name | Mr Robert Joubert |
Function | CEO |
Department | |
Email | elsnet_(on)_boomerangmarketing.co.za |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2010-08-14 14:00:07
#!/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"
|