|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3603 ] | eSGI |
|---|---|
| Organisation name | e-Services Group International |
| Short name or acronym | eSGI |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 2106 Neptune Ct |
| Postal Code | 74006 |
| City | Bartlesville |
| Country | United States |
| Phone | +918 335-2522 |
| Fax | +918 335-0358 |
| markrovenstine_(on)_cableone.com | |
| Organisation URL | http://www.e-servicesgroup.com |
| Logo | Description |
![]() |
e-Services Group International Montego Bay, Jamaica Phone: (918) 335-2522 www.e-servicesgroup.com e-Services Group provides offshore outsourced customer care / call-center solutions for North American companies who desire lower costs using our four near shore Jamaican locations. We offer: 1,600 English-speaking CSRs, AT&T fiber network, very low annual turnover rates, near the USA, on Eastern Standard Time, easy to visit and great references!! |
| Contact | |
| Name | Director Mark Rovenstine |
| Function | Sales |
| Department | Sales |
| markrovenstine_(on)_cableone.com | |
| Phone | +918 335-2522 |
| Fax | +918 335-0358 |
|
|
Last update: 2005-10-26 20:23:57 #!/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" |