|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3466 ] | 1 Varshyl |
---|---|
Organisation name | 1 Varshyl company |
Short name or acronym | 1 Varshyl |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 3001 Muridrum Way |
Postal Code | 95148 |
City | San Jose |
Country | India |
Phone | + +4084102240 |
Fax | + |
sales_(on)_varshyl.com | |
Organisation URL | http://www.varshyl.com |
Logo | Description |
![]() |
First call center targeting specifically to English and Spanish speaking customers. Adding business intelligence to agents using non traditional, comtemporary softwares. We are the only call that offers - Business intelligence - habbit monitoring - Software analysis - Customized solutions - Multi lingual services - Innovative ways to monitor trends so customers can save hundreds and thousands of dollars and hours on their clients |
Member of elsnet | Contact |
Name | Director of Marketing Vagish Kapila |
Function | Marketing and Buss Dev |
Department | Marketing |
sales_(on)_varshyl.com | |
Phone | + +4084102240 |
Fax | + |
![]() |
Last update: 2004-12-28 03:11:28 #!/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" |