| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2947 ] | VHT | 
|---|---|
| Organisation name | Virtual Hold Technology | 
| Short name or acronym | VHT | 
| Organisation type | Private company | 
| Activity type | Other expertise relevant for Language or Speech Technology | 
| Address | 137 Heritage Woods Drive | 
| Postal Code | 44321 | 
| City | Akron | 
| Country | United States | 
| Phone | +1 877-886-8187 | 
| Fax | +1 330-670-2269 | 
| info_(on)_virtualhold.com | |
| Organisation URL | http://www.virtualhold.com | 
| Logo | Description | 
|  | Virtual Hold Technologys patented virtual queuing solutions help call centers meet service level targets with reduced staffing requirements. Virtual Hold educates callers of their estimated wait time and gives them the choice of remaining on hold or receiving a callback when its their turn to speak with an agent; other features include scheduled callbacks, proactive notificaiton, and integration with the web, mobile device, or desktop computer. Virtual Hold:  Increases customer satisfaction  Reduces ASA & abandons  Improves service level  Increases agent efficiency  Reduces toll and labor expenses  Improves agent morale and reduces turnover. With more than 15 years of industry leadership as a dedicated innovator of queue management solutions, Virtual Hold software is the must-have standard for contact centers serious about providing top levels of customer service. | 
| Contact | |
| Name | Adrienna Frazer | 
| Function | Marketing | 
| Department | |
| afrazer_(on)_virtualhold.com | |
| Phone | +1 330-670-2263 | 
| Fax | +1 330-670-2269 | 
|  Update this profile | Last update: 2010-11-02 19:13:16 #!/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" |