Organisation profile: Paras Calltec Ltd
[ ID = 3428 ] | Paras |
Organisation name | Paras Calltec Ltd |
Short name or acronym | Paras |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 8th Floor, Paras Downtown Centre, Sector 53, Sector Road |
Postal Code | 122002 |
City | Gurgaon |
Country | India |
Phone | + +911242573593 |
Fax | + +911242573592 |
Email | surabhi.nayyar_(on)_parascalltec.com |
Organisation URL | http://www.parascalltec.com |
Logo | Description |
 |
Paras Calltec Ltd. is a well established Call Centre located in Gurgaon, the fastest growing suburb of New Delhi, India. It is a 100% internally funded operation with no dependance on external finance agencies. Our current capacity is 200 seats in a single shift ie. 600 seats in 3 shifts. We have had experience in running various campaigns like outbound telesales (both B2B and B2C), lead generation, appointment setting, inbound sales, surveys, inbound customer services and debt collections etc for clients in the US, UK and Canada.
|
| Contact |
Name | Ms Surabhi Nayyar |
Function | Head - Projects |
Department | Business Development |
Email | surabhi75_(on)_yahoo.com |
Phone | + 919899286000 |
Fax | + |
Update this profile
|
Last update: 2004-10-07 21:12:05
#!/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"
|
|