Organisation profile: ONVAIO
[ ID = 3572 ] | Global Call Center Solutions, Customer Care, Technology Support, Lead Generation Services |
Organisation name | ONVAIO |
Short name or acronym | Global Call Center Solutions, Customer Care, Technology Support, Lead Generation Services |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 530 Showers Dr, 7-163 |
Postal Code | 94040 |
City | Mountain View |
Country | United States |
Phone | +1 866-381-6060 |
Fax | +1 866-381-6060 |
Email | onvaio_sales_(on)_onvaio.com |
Organisation URL | http://www.onvaio.com |
Logo | Description |
 |
ONVAIO delivers managed world-class globally sourced customer contact solutions
to rapidly growing enterprises. ONVAIO helps you grow your business by
augmenting your inside sales and lead generation needs, manage customer
support, service delivery requirements to keep you connected with your
customers and reduce your back office operations costs.
|
| Contact |
Name | |
Function | |
Department | |
Email | onvaio_sales_(on)_onvaio.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2005-08-21 01:31:51
#!/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"
|
|