|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3106 ] | Time iCR Inc. |
---|---|
Organisation name | Time iCR Inc. |
Short name or acronym | Time iCR Inc. |
Organisation type | Speech Enabling Solutions |
Activity type | Ottawa |
Address | 1600 Laperrierre Ave. Suite 102 |
Postal Code | K1Z 8P5 |
City | Ottawa |
Country | Canada |
Phone | + 613 798 1500 |
Fax | + 613 798 1505 |
Organisation URL | http://www.timeicr.com |
Logo | Description |
![]() |
Time iCR offers sophisticated IVR and call processing solutions in the language of your choice throughout the U.S. and Canada. Headquartered in Ottawa, Ontario, the company has a 30-year history of engineering specialized applications for complex telecommunications systems. We design, implement, administer, and maintain an extensive variety of state-of-the-art network IVR solutions for customers in a host of different industries. |
Contact | |
Name | National Sales Representative Robert Cote |
Function | |
Department | Sales |
rcote_(on)_timeicr.com | |
Phone | + 613 798 1504 |
Fax | + 613 798 1500 |
![]() |
Last update: 2002-11-20 17:23:38 #!/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" |