[ ID = 3391 ] | GRI |
Organisation name | Global Respondez Inc. |
Short name or acronym | GRI |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | 50 Cragwood Road, South Plainfield |
Postal Code | 07080 |
City | South Plainfield |
Country | United States |
Phone | + +1 908-561-5154 extn 104 |
Fax | + +1 908-561-5321 |
Email | sandeep_(on)_globalrespondez.com |
Organisation URL | http://www.globalrespondez.com |
Logo | Description |
|
Global Respondez Inc. is a service provider for customer centric campaigns and
processes. We specialize in outbound and inbound campaigns for our clients
based in USA and UK.
Our local presence in these countries helps strengthen local interaction and in
process migration.
|
| Contact |
Name | Mr. Sandeep Anand |
Function | Vice President |
Department | Sales |
Email | sandeep_(on)_globalrespondez.com |
Phone | + +1 908-561-5154 extn 104 |
Fax | + +1 908-561-5321 |
Update this profile
|
Last update: 2004-08-03 22:08:56
#!/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"
|