elsnet |
Organisation profile: Navigant Technologies Private Limited |
[ ID = 3514 ] | NTPL |
---|---|
Organisation name | Navigant Technologies Private Limited |
Short name or acronym | NTPL |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 221, Okhla Industrial Area Phase III |
Postal Code | 110020 |
City | New Delhi |
Country | India |
Phone | + +91 11 51636150 |
Fax | + +91 11 51708622 |
ankur_(on)_navigantindia.com | |
Organisation URL | http://www.navigantindia.com |
Logo | Description |
Navigant Technologies is an International Call Center headquartered in New Delhi, India. We deliver services out of a spacious contact center with the most reliable computing and communication solutions. Today, Navigant provides proven scalable Customer Contact and Back Office processing solutions that save corporations up to 30-40% of their current costs. Benefits of such B2B programs have been realized by some of our prestigious clients such as PTC, SGI, Oracle, Inphi Corporation, Sar Softech, Bull Media and many more. Navigant has been handling Inbound / Outbound voice and web based outsourcing center for our customers across South Asia, US, Canada and the UK. With a proven and highly redundant telecommunications platform, Navigant Technologies utilizes today's most cutting edge technology to improve all aspects of our client's processes. Navigant exists to help you better understand and connect with your customers. We see ourselves as a strategic partner rather than a vendor. We engage with select clients for whom we are confident we can add value. Call us at US DID:(212) 381-1101;Canada DID:(514) 448-6314;US TF# (866) 528-3727; India +91 11 51636150 Email: ankur@navigantindia.com | |
Contact | |
Name | CEO Ankur Bhatia |
Function | |
Department | |
Phone | + format: +countrycode areacode number |
Fax | + format: +countrycode areacode number |
Update this profile | Last update: 2005-04-06 04:53:36 #!/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" |