|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4731 ] | GCS |
---|---|
Organisation name | Global Contact Services |
Short name or acronym | GCS |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 118 B South Main St. |
Postal Code | |
City | Salisbury |
Country | United States |
Phone | +011 7046479621 |
Fax | +011 7046479792 |
ContactUs_(on)_GCSagents.com | |
Organisation URL | http://www.gcsagents.com |
Logo | Description |
![]() |
GCS provides outsourced contact center services, center staffing and program management in client owned facilities and consulting on all phases of contact center operation. Currenly provide bi-lingual language with English as the common language, paired with Spanish, Russian, Chinese, Dutch and Amharic. Provide contact center services from the U.S., Canada, Caribean, Central America, Europe and Middle East. |
Contact | |
Name | Vice President of New Business Development George Simons |
Function | Business Development |
Department | Sales |
Geoge.Simons_(on)_GCSagents.com | |
Phone | +011 7046479621 |
Fax | +011 7046479792 |
![]() |
Last update: 2015-02-04 23:38:43 #!/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" |