|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3933 ] | CT |
|---|---|
| Organisation name | Call Tech |
| Short name or acronym | CT |
| Organisation type | Private company |
| Activity type | Other Call Center related expertise |
| Address | I.Blazkevich |
| Postal Code | 79000 |
| City | Lviv |
| Country | Ukraine |
| Phone | +380977916659 |
| Fax | + |
| info_(on)_calltech.com.ua | |
| Organisation URL | http://www.calltech.com.ua |
| Logo | Description |
![]() |
Let us introduce you our innovation outsourcing multilingual call center - CALL TECH. Located in two most multilingual cities of Ukraine Kiev and Lviv with working space of more than 200 sq meters. And more than 60 Modern equipped 100%-automated working station operating 24/7. We speak English, German, French, Spanish, Italian, Russian, Czech, Ukrainian, Polish languages. From 2003 we offer a standard package of call centers services, as well as any other outsourcing works, which are necessary for our customers for successful business. |
| Contact | |
| Name | Manager Lena Black |
| Function | |
| Department | |
| info_(on)_calltech.com.ua | |
| Phone | + |
| Fax | + |
|
|
Last update: 2008-12-09 15:43:39 #!/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" |