Organisation profile: Mercom Systems, Inc.
[ ID = 0352 ] | Mercom Systems, Inc. |
Organisation name | Mercom Systems, Inc. |
Short name or acronym | Mercom Systems, Inc. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 9 Polito Ave. |
Postal Code | 07071 |
City | Lyndhurst, NJ |
Country | United States |
Phone | + +1 201 507 8800 |
Fax | + +1 201 507 5554 |
Email | sales_(on)_mercom.com |
Organisation URL | http://www.mercom.com |
Logo | Description |
 |
MERCOM Systems is a software development company. The
company focuses on the development of Computer Telephony (CTI)
software solutions for business and public sector markets. MERCOM
Systems utilizes the most advanced software tools and platforms
available. WINDOWS NT is the current platform of choice. Systems
developed by MERCOM Systems have included Mercury Mail, the worlds the
first Windows Voice Mail system utilizing a Dialogic platform, Mercury
IVR Application Development Tool and Speech Link utilizing speech
recognition for an application used in major NYC Brokerages.
|
| Contact |
Name | |
Function | |
Department | |
Email | |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2002-04-10 12:32:58
#!/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"
|
|