Organisation profile: i2c World, Inc.
| [ ID = 3875 ] | i2c |
| Organisation name | i2c World, Inc. |
| Short name or acronym | i2c |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 59 West 37th Street, 2nd Floor |
| Postal Code | 10016 |
| City | New York |
| Country | United States |
| Phone | +212 3980102 |
| Fax | +212 3989858 |
| Email | sasha_(on)_i2cworld.com |
| Organisation URL | http://www.i2cworld.com |
| Logo | Description |
 |
Inbound and outbound center specializing in B2Blead generation, appointment
setting, collections, order taking and call answering.
|
|
| Contact |
| Name | Ms. Sasha Revankar |
| Function | General Manager |
| Department | Management |
| Email | sasha_(on)_i2cworld.com |
| Phone | +212 3980102 |
| Fax | +212 3989858 |
Update this profile
|
Last update: 2008-06-24 20:01:10
#!/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"
|
|