Organisation profile: Multi Channel Systems, Inc.
[ ID = 0233 ] | Multi Channel Systems, Inc. |
Organisation name | Multi Channel Systems, Inc. |
Short name or acronym | Multi Channel Systems, Inc. |
Organisation type | Other |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 2226 Arbor Crest Dr. |
Postal Code | 75007 |
City | Carrollton, TX |
Country | United States |
Phone | + 1.888.769.9629 (U.S. only) |
Fax | + 1.972.306.6712 |
Email | sales_(on)_mcsmk8.com |
Organisation URL | http://www.mcsmk8.com |
Logo | Description |
 |
Multi-Channel Systems is a software development firm for
Interactive Voice Response Systems (IVR). MCS makes the MARK VIII
PC-based predictive dialer: 8 lines, 5 operators for small
telemarketing call centers. And also builds large Power Dialers that
are specifically designed for larger corporate sized call center
clients.
|
| Contact |
Name | Mr. Matt Garrett |
Function | Sales/Technical |
Department | MARK VIII Development |
Email | mgarrett_(on)_mcsmk8.com |
Phone | + 1.888.769.9629 (U.S. only) |
Fax | + 1.972.306.6712 |
Update this profile
|
Last update: 2004-12-08 18:01:30
#!/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"
|
|