[ ID = 3828 ] | Colliers CCSG |
Organisation name | Colliers Call Center Services Group |
Short name or acronym | Colliers CCSG |
Organisation type | Other |
Activity type | Other Call Center related expertise |
Address | 1 Queen St. East, Suite 2200 |
Postal Code | M5C 2Z2 |
City | Toronto |
Country | Canada |
Phone | +011 416 643-3721 |
Fax | +011 416 777-2277 |
Email | john.creba_(on)_colliers.com |
Organisation URL | http://www.colliersteams.com/callcenter |
Logo | Description |
 |
Call Center site selection advisory services, incentive procurement
specialists, real estate brokerage, logistical support. Colliers CCSG is a
globally based company with 250 offices in over 50 countries globally.
|
| Contact |
Name | VP - Director of the Colliers International CCSG John Creba |
Function | Business Development |
Department | Colliers CCSG |
Email | john.creba_(on)_colliers.com |
Phone | +011 416=643=3721 |
Fax | + |
Update this profile
|
Last update: 2011-04-28 22:08:06
#!/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"
|