|
|
Organisation profile: XL World Romania
[ ID = 3749 ] | XL World |
Organisation name | XL World Romania |
Short name or acronym | XL World |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Aleea Sadoveanu 13, Iasi, Romania |
Postal Code | 700490 |
City | Iasi |
Country | Romania |
Phone | +40 332 403001 |
Fax | +40 332 403003 |
Email | info_(on)_xlworld.eu |
Organisation URL | http://www.xlworld.eu |
Logo | Description |
![](http://www.elsnet.org/expix/blank.jpg) |
XL World is one of the largest and most experienced Outsourcer in Romania. We operate from 4 sites in Romania offering multi-lingual services in 14 different languages. We offer Contact Center and Back Office Outsourcing services to large multi-national organizations. We also offer services in Romanian language to the local market.
|
| Contact |
Name | Roberto Montandon |
Function | Partner |
Department | |
Email | info_(on)_xlworld.eu |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2007-02-26 09:08:30
#!/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"
|
|