|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3810 ] | ACS |
---|---|
Organisation name | Admarie Communications Services Inc |
Short name or acronym | ACS |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 1224 Dundas St E Unit 15 |
Postal Code | L6Y4A2 |
City | Mississauga |
Country | Canada |
Phone | +905 5660930 |
Fax | +905 5668797 |
info_(on)_admarie.com | |
Organisation URL | http://www.admarie.com |
Logo | Description |
![]() |
ACS is a 150 seat full service Call Centre that provides a wide range of outsourcing inbound and outbound customer contact solutions through the use of state of the art technology and diverse cultural workforce (multi-lingual). |
Contact | |
Name | VP Operations Angela Gordon |
Function | In charge of Call Centre Operations and Strategic Direction |
Department | |
agordon_(on)_admarie.com | |
Phone | +905 5660930 |
Fax | +905 5668797 |
![]() |
Last update: 2007-08-15 21:19:05 #!/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" |