|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3812 ] | Integrat |
---|---|
Organisation name | Integrateurs Intn'l Inc. |
Short name or acronym | Integrat |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | |
Postal Code | |
City | Toronto |
Country | Canada |
Phone | +905 951-2760 |
Fax | + |
wmhalpern_(on)_sympatico.ca | |
Organisation URL | http://www.weopenyouclose.com |
Logo | Description |
![]() |
Integrateurs Intnl Inc...a Canadian marketing firm specializing in new business development and lead generation for hi-tech companies specifically targeting the Contact Center community. In short, we open doors for HI-TECH Companies marketing a number of best of breed" technologies designed specifically for Contact Centers. Over the years we have built a database of well over 40,000 contact centers, mostly across the U.S., some in Canada, and more these days internationally. We also are involved in Contact Center Mergers & Acquisitions. |
Contact | |
Name | President Bill Halpern |
Function | |
Department | |
wmhalpern_(on)_sympatico.ca | |
Phone | + |
Fax | + |
![]() |
Last update: 2007-09-06 12:34:46 #!/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" |