Organisation profile: OnLine Interpreters, Inc.
[ ID = 1953 ] | OnLine Interpreters, Inc. |
Organisation name | OnLine Interpreters, Inc. |
Short name or acronym | OnLine Interpreters, Inc. |
Organisation type | Company |
Activity type | Call centers |
Address | 2560 Garden Road, Suite 205 |
Postal Code | 93940 |
City | Monterey, CA |
Country | United States |
Phone | + +1 831 372 3582 |
Fax | + +1 831 372 3586 |
Email | pspeciale_(on)_onlineinterpreters.com |
Organisation URL | http://www.onlineinterpreters.com |
Logo | Description |
 |
OnLine Interpreters is Americas fastest growing full
service language interpretation and text translation Company. OnLine
Interpreters core product is Over-the-phone interpretation in 150
languages, 24 x 7. Average connect time to reach an interpreter is 8
seconds. We hire the best interpreters available in the industry then
conduct training in customer service skills plus industry-specialized
terminology. Other products include: electronic mail and short message
translations, in-language telemarketing and teleservicing. The fastest
connect time in the industry, coupled with our high quality of service
and the most competitive pricing, make OnLine Interpreters the
superior choice for knowledgeable buyers of language services.
|
| Contact |
Name | Mr. Philip Speciale |
Function | Vice President - Marketing and Sales |
Department | Marketing |
Email | pspeciale_(on)_onlineinterpreters.com |
Phone | + +1 831 372 3695 |
Fax | + +1 831 372 3586 |
Update this profile
|
Last update: 2002-04-10 12:32:58
#!/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"
|
|