|
|
Organisation profile: Virtual Hold Technology
[ ID = 0608 ] | VHT |
Organisation name | Virtual Hold Technology |
Short name or acronym | VHT |
Organisation type | Company |
Activity type | |
Address | 137 Heritage Woods Drive |
Postal Code | 44321 |
City | Akron, OH |
Country | United States |
Phone | + +1 330 670 2200 |
Fax | + +1 330 670 2269 |
Email | info_(on)_virtualhold.com |
Organisation URL | http://www.virtualhold.com |
Logo | Description |
|
Virtual Hold Technology is the leading provider of intelligent Queue Management Solutions for Fortune 1000 clients. Since its inception in 1995, the companys award-winning virtual queuing technology has become an integral part of the Customer Experience Management (CEM) process at major corporations such as Home Shopping Network, BellSouth, Ticketmaster and Moen. Queue Management Solutions provide a better customer experience while at the same time improving contact center efficiency. To learn more about intelligent Queue Management Solutions and virtual queuing technology, visit Virtual Holds Web site, www.virtualhold.com.
|
| Contact |
Name | Director of Technology Eric Camulli |
Function | |
Department | |
Email | info_(on)_virtualhold.com |
Phone | + 330.670.2200 |
Fax | + 330.670.2269 |
Update this profile
|
Last update: 2004-03-09 13:40:15
#!/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"
|
|