elsnet |
Organisation profile: Castcom AB Stockholm |
[ ID = 1629 ] | Castcom AB Stockholm |
---|---|
Organisation name | Castcom AB Stockholm |
Short name or acronym | Castcom AB Stockholm |
Organisation type | Company |
Activity type | Call centers |
Address | Södermälarstrand 43 |
Postal Code | SE-104 62 |
City | Stockholm |
Country | Sweden |
Phone | + +46 8 556 070 63 |
Fax | + +46 8 556 070 63 |
info_(on)_castcom.com | |
Organisation URL | http://www.castcom.com/ |
Logo | Description |
Castcom provides new, innovative and user-oriented software products and solutions that enhance personal communication and deepen human interaction on the Net. In today's new economy, where an increasing number of transactions are carried out over the Internet, Castcom's products enrich direct human contact and support e-commerce transactions. The products are based on the emerging technologies around IP telephony, e-Commerce and web technology that gives customers competitive advantages within communication, co-operation and customer contacts. | |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
Update this profile | Last update: 2002-04-10 12:32:58 #!/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" |