elsnet |
Organisation profile: ARK e-Tail Services Inc |
[ ID = 3491 ] | ARK |
---|---|
Organisation name | ARK e-Tail Services Inc |
Short name or acronym | ARK |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 5160 Yonge Street, Suite 300 |
Postal Code | M2N 6L9 |
City | Toronto |
Country | Canada |
Phone | + 416.640.7300 |
Fax | + 416.512.7504 |
pbarnard_(on)_arketail.com | |
Organisation URL | http://www.arketail.com |
Logo | Description |
ARK Provides customer management solutions by phone, email, and the Web to large customer driven industries, by assisting our clients in minimizing risk and enhancing revenue by acquiring and retaining profitable customers. Providing turnkey solutions from initial concept through to acquisition and retention. | |
Contact | |
Name | CEO Paul Barnard |
Function | Chief Executive Officer |
Department | |
pbarnard_(on)_arketail.com | |
Phone | + 416.640.7521 |
Fax | + 416.512.7504 |
Update this profile | Last update: 2005-02-03 23:43:08 #!/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" |