|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3268 ] | Telegenisys Inc. |
---|---|
Organisation name | Telegenisys Inc. |
Short name or acronym | Telegenisys Inc. |
Organisation type | 1 Private company |
Activity type | 9 Call center without specific expertise in Lang+Speech |
Address | 127 Aspen Drive |
Postal Code | 94553 |
City | Martinez |
Country | United States |
Phone | + (925) 677-7285 |
Fax | + (925) 608-0014 |
dsanchez_(on)_telegenisys.com | |
Organisation URL | http://www.telegenisys.com |
Logo | Description |
![]() |
Telegenisys Inc. is a highly customized delivery organization for outsourced projects. The organization works by converting customer expectations into deliverables and carefully measuring the progress to ensure client success. With a prestigious Pune, Maharashtra based BPO organization with a California based counterpart and several hundred professionals in the areas of high performance call response, outbound dialing, web promotions and design, data research and accounting the organization is geared to precision and performance to our client expectations. Telegenisys uses all digital technologies to deliver quality voice and data to each agent in its facility in India. Using encrypted VPN and private circuits, Telegenisys further ensures a secure and private environment for our customers. Telegenisys delivers better conversational quality voice by ensuring advanced speech training with "speech generalization" techniques that emphasize understanding and clarity. With our unique pilot project offerings we can assure our clients of a high rate of project success. |
Contact | |
Name | Manager of BPO Sales Desiree Sanchez |
Function | Business Process Outsourcing |
Department | BPO Sales |
dsanchez_(on)_telegenisys.com | |
Phone | + 925-677-7285 |
Fax | + 925-608-0014 |
![]() |
Last update: 2004-04-04 15:37:03 #!/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" |