Organisation profile: N-Soft of North America, Inc.
[ ID = 0306 ] | N-Soft of North America, Inc. |
Organisation name | N-Soft of North America, Inc. |
Short name or acronym | N-Soft of North America, Inc. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 1600 Golf Road, Suite 1200 |
Postal Code | 60008 |
City | Rolling Meadows, IL |
Country | United States |
Phone | + +1 847 981 6805 |
Fax | + +1 847 981 5006 |
Email | info_(on)_n-softna.com |
Organisation URL | http://www.n-soft.com |
Logo | Description |
 |
N-Soft specializes in Computer Telephony Integration and
development software. Their flagship product is called Etrog; it is a
CTI toolkit which integrates agent desktop stations, PBXs, IVRs and
customer databases with popular Call Center and Workflow software
products. Etrog lets you design client applications that communicate
with PBXs to manage telephone calls and monitor resource usage.
|
| Contact |
Name | Mr. Robert Manning |
Function | Vice President |
Department | Sales and Marketing |
Email | bmanning_(on)_n-softna.com |
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"
|
|