|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3716 ] | CT |
|---|---|
| Organisation name | Call Tech |
| Short name or acronym | CT |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | I.Blazhkevich6/2 |
| Postal Code | 79052 |
| City | Lviv |
| Country | Ukraine |
| Phone | +380 977916659 |
| Fax | + |
| calltech_(on)_tiar.net | |
| Organisation URL | http://www.calltech.net.ua |
| Logo | Description |
![]() |
Call Tech- multilingual outsourcing call center. We offer a standard package of call center services, which are necessary for our customers for successful business. We speak English, Russian, Ukrainian, Polish, and French languages. We use modern VoIP-based complex for handling incoming and outgoing calls, we contain own IT department. |
| Contact | |
| Name | Mr Sviat Zhelekhovsky |
| Function | chif executive |
| Department | |
| s.zhelekhovsky_(on)_calltech.net.ua | |
| Phone | + |
| Fax | + |
|
|
Last update: 2006-11-02 07:00: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" |