[ ID = 3550 ] | ISS Inc |
Organisation name | Innovative Solution Systems, Inc |
Short name or acronym | ISS Inc |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | One Woodbridge Center` |
Postal Code | NJ 07095 |
City | Woodbridge |
Country | United States |
Phone | +001 732-423-1785 |
Fax | +001 732-596-0300 |
Email | gsarkar_(on)_iss-soft.com |
Organisation URL | http://www.iss-soft.com |
Logo | Description |
|
We offer outbound and inbound telemarketing and helpdesk call center services
We also offer telecommunication services at cheapest rates which is especially
long distance as well as domestic telephone traffice within United States.
|
| Contact |
Name | COO & Vice President Gurudas Sarkar |
Function | Business Development and Operations |
Department | Business Development |
Email | gsarkar_(on)_iss-soft.com |
Phone | +001 732-423-1785 |
Fax | +001 732-596-0300 |
Update this profile
|
Last update: 2005-06-23 07:35:42
#!/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"
|