|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4525 ] | DMI |
|---|---|
| Organisation name | Dialogue Marketing |
| Short name or acronym | DMI |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | 300 E Big Beaver Suite 400, Troy, MI |
| Postal Code | 48083 |
| City | Troy |
| Country | United States |
| Phone | + 800.523.5867 |
| Fax | + 800.523.5867 |
| info_(on)_dialogue-marketing.com | |
| Organisation URL | http://www.Dialogue-marketing.com |
| Logo | Description |
![]() |
Established more than 30 years ago, Dialogue Marketing, Inc. provides award-winning BPO and customer engagement services to help companies of all sizes and across a wide range of industries acquire, support and retain customers across multiple channels. With more than 1,100 U.S.-based employees, Dialogue Marketing specializes in lead generation, customer care, technical support, inside sales and order fulfillment to build long-term enterprise value and lifelong customer relationships. |
| Contact | |
| Name | |
| Function | |
| Department | |
| info_(on)_dialogue-marketing.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2012-11-12 17:07:47 #!/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" |