|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3635 ] | BR |
|---|---|
| Organisation name | Business Relations |
| Short name or acronym | BR |
| Organisation type | Private company |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | 8-12 Circumvalatiunii Street, |
| Postal Code | 300012 |
| City | Timisoara |
| Country | Romania |
| Phone | +0040 256200000 |
| Fax | +0040 256272700 |
| sales_(on)_businessrelations.ro | |
| Organisation URL | http://www.businessrelations.ro |
| Logo | Description |
![]() |
Business Relations is an extremely modern, efficient and flexible Competence Center, ready to offer a wide range of call center services as well as excellence in Customer Relationship Management. Our extremely reach experience in the Customer Care domain, associated with the competence and responsibility of a young, dynamic and motivated team, explain our daily successes and represent the guarantee for our future successes. |
| Contact | |
| Name | Ms Anita Radoi |
| Function | Sales Coordinator |
| Department | Comercial |
| anita.radoi_(on)_businessrelations.ro | |
| Phone | +0040 256300638 |
| Fax | +0040 256272700 |
|
|
Last update: 2006-01-26 15:02:33 #!/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" |