Organisation profile: NetByTel, Inc.
[ ID = 1154 ] | NetByTel |
Organisation name | NetByTel, Inc. |
Short name or acronym | NetByTel |
Organisation type | Company |
Activity type | Speech Application Service Provider |
Address | 1141 South Rogers Circle |
Postal Code | 33487 |
City | Boca Raton, FL |
Country | United States |
Phone | + +1 561 988 5050 |
Fax | + +1 561 988 5050 |
Email | sales_(on)_netbytel.com |
Organisation URL | http://www.netbytel.com |
Logo | Description |
 |
NetByTel® is the industry leader in the rapidly expanding market for voice-enabled self-service. Answering millions of calls with more deployed solutions than anyone in the voice recognition industry, NetByTel knows the business of customer self-service and offers the premier solution in managing customer telephone interactions. Developed and deployed with NetByTel's VoiceServ platform, NetByTel's hosted configurable solutions are benefiting its clients with reduced operating costs and improved customer service. For more information, visit the company web site at www.netbytel.com.
|
| Contact |
Name | Mr. Kenneth Jackowitz |
Function | Senior Vice President & Chief Customer Officer |
Department | |
Email | kjackowitz_(on)_netbytel.com |
Phone | + 561.981.1973 |
Fax | + 561.988.5092 |
Update this profile
|
Last update: 2003-08-22 16:01:19
#!/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"
|
|