|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3650 ] | Crystal Call |
---|---|
Organisation name | Crystal Call, Inc. |
Short name or acronym | Crystal Call |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Racianska 22/A |
Postal Code | 83102 |
City | Bratislava |
Country | Slovakia |
Phone | +421 3223 3110 |
Fax | +421 3223 3112 |
sales_(on)_crystalcall.sk | |
Organisation URL | http://www.crystalcall.sk |
Logo | Description |
![]() |
Crystal Call is multilanguage call center, which actively works in the area active and passive telemarketing 24/7. We also focuse on CRM implementation, market research or direct marketing analysis and consulting. Languages: Slovak, Czech, French, English, German, Hungarian, and others on demand... |
Contact | |
Name | Mr. Martin Minarik |
Function | Project Manager |
Department | Sales & Marketing |
sales_(on)_crystalcall.sk | |
Phone | +421 3223110 |
Fax | +421 3223 3112 |
![]() |
Last update: 2008-03-27 14:01:05 #!/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" |