| [ ID = 4603 ] | SLS | 
|---|
| Organisation name | Somya Life Sciences | 
| Short name or acronym | SLS | 
| Organisation type | Association, SIG, Project | 
| Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology | 
| Address | Plot No:- A-52, Second Floor, Pandav Nagar Main Market, Opp. Mother Dairy | 
| Postal Code | 110092 | 
| City | Delhi | 
| Country | India | 
| Phone | +91 1122486881 | 
| Fax | +91 1143061917 | 
| Email | somyalifesciences_(on)_gmail.com | 
| Organisation URL | http://www.somyalifesciences.com/ | 
| Logo | Description | 
|---|
|  | 
Somya Life Sciences is a Lifescience Medical Translation Agency having 
qualified Translators from medical domain. Our medical translators translate 
records, prescription, documents, and clinical materials. Apart from this our 
medical interpreters has sharp knowledge of Medical terms and they execute 
conference Interpretation Smoothly.
 | 
| Member of    elsnet | Contact | 
|---|
| Name | Medical Translation Agency Somya LifeSciences | 
| Function |  | 
| Department | SEO | 
| Email | somyalifesciences_(on)_gmail.com | 
| Phone | +91 1122486881 | 
| Fax | +91 1143061917 | 
|  Update this profile | Last update: 2013-10-16 18:17:35
#!/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" | 
|---|