Organisation profile: IBTek
[ ID = 2127 ] | IBTek |
Organisation name | IBTek |
Short name or acronym | IBTek |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 11 Aldred Lane |
Postal Code | 15227 |
City | Pittsburgh, PA |
Country | United States |
Phone | + +1 412 881 5588 |
Fax | + +1 412 881 5586 |
Email | info_(on)_ibtek.com |
Organisation URL | http://www.ibtek.com |
Logo | Description |
 |
Smartphone is a complete telephony communications software suite that combines the power and efficiency of personal computers with the most important tool for business: the telephone. And now, we work with VOIP, as well.
Smartphone can include a 5th generation application generator, automated attendant, voice mail, unified messaging, smart call center, speech recognition, text to speech, and much, much more!
|
| Contact |
Name | General Business Development Erv Bauman |
Function | Business Development |
Department | |
Email | erv.bauman_(on)_ibtek.com |
Phone | + +1 412 881 5588 |
Fax | + +1 412 881 5586 |
Update this profile
|
Last update: 2004-07-20 23:22:50
#!/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"
|
|