|  [ ID = 3562 ]  | RSB Systems  | 
| Organisation name | RSB Systems Inc.  | 
| Short name or acronym | RSB Systems  | 
| Organisation type | Private company  | 
| Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology  | 
| Address  | 52,54 Hartron complex, Electronics City,  | 
| Postal Code  | 122015  | 
| City  | Gurgaon  | 
| Country  | India  | 
| Phone  | +91 124-2347024 | 
| Fax  | +91 124-2398721 | 
| Email  | abhishek_(on)_rsbsystems.com  | 
| Organisation URL  | http://www.rsbsystems.com  | 
| Logo | Description  | 
  | 
Transcription services.Medical,legal trancription,digitelization of speeches in 
different language mainly in english
  | 
| 
  
 | Contact | 
| Name | Marketing Manager Abhishek Sharma  | 
| Function | Service Marketing  | 
| Department | Business Development  | 
| Email | abhishek_(on)_rsbsystems.com  | 
| Phone | +91 124-2347024 | 
| Fax | +91 124-2398721 | 
 
 
Update this profile
 | 
Last update: 2005-08-09 13:04:15
#!/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"
 |