|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3935 ] | BHK |
|---|---|
| Organisation name | Bh.Kontakt |
| Short name or acronym | BHK |
| Organisation type | Other |
| Activity type | Call center with specific expertise in Language or Speech Technology |
| Address | Ismeta Alajbegoviæa erbe 7 |
| Postal Code | 71000 |
| City | Sarajevo |
| Country | Bosnia and Herzegovina |
| Phone | +387 33 941 300 |
| Fax | +387 33 941 301 |
| info_(on)_bhkontakt.ba | |
| Organisation URL | http://www.bhkontakt.ba |
| Logo | Description |
![]() |
We are contact centre which outsourse different (wide spectrum) of contact centre services. We provide 24 hour/7 days service on the following languages: Serbian, Croatian, Bosnian, German, English and can provide services on other languages per request. We use land line, mobile lines and IpTelephony |
| Contact | |
| Name | Mrs. Indira Karovic |
| Function | CEO |
| Department | CEO |
| indira.karovic_(on)_bhkontakt.ba | |
| Phone | +387 33941300 |
| Fax | +387 33941301 |
|
|
Last update: 2008-12-11 12:34:01 #!/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" |