|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4558 ] | 380Global |
---|---|
Organisation name | 380Global Multilingual Contact Center |
Short name or acronym | 380Global |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | № 904, 16-22, Bohdana Khmel'nyts'koho St |
Postal Code | 01601 |
City | Kiev |
Country | Ukraine |
Phone | +380 976990483 |
Fax | + |
info_(on)_380global.com | |
Organisation URL | http://www.380global.com |
Logo | Description |
We are one of Europes premier outsourcing suppliers of multilingual Contact Center services offering customer service excellence. In addition we have lead generation and telemarketing activities. We operate 24/7 offering your business fully trained agents focused on achieving your business objectives. We offer a range of languages including English, Italian, German, Swedish and French speaking services. Simply tell us your required language! | |
Contact | |
Name | Mr Martin Smyth |
Function | Director Of New Business |
Department | New Business |
info_(on)_380global.com | |
Phone | +380 976990483 |
Fax | + |
Update this profile | Last update: 2013-06-21 14:23:20 #!/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" |